CRLF改为LF
This commit is contained in:
parent
a832916948
commit
4b730cc5b2
15
.editorconfig
Normal file
15
.editorconfig
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# vscode 请安装插件:CTRL+SHIFT+X 搜索 EditorConfig 并安装
|
||||||
|
# http://editorconfig.org
|
||||||
|
root = true
|
||||||
|
|
||||||
|
[*]
|
||||||
|
charset = utf-8
|
||||||
|
indent_style = space
|
||||||
|
# indent_size = 2
|
||||||
|
end_of_line = lf
|
||||||
|
insert_final_newline = true
|
||||||
|
trim_trailing_whitespace = true
|
||||||
|
|
||||||
|
[*.md]
|
||||||
|
insert_final_newline = false
|
||||||
|
trim_trailing_whitespace = false
|
16
backend/.idea/.gitignore
generated
vendored
16
backend/.idea/.gitignore
generated
vendored
@ -1,8 +1,8 @@
|
|||||||
# 默认忽略的文件
|
# 默认忽略的文件
|
||||||
/shelf/
|
/shelf/
|
||||||
/workspace.xml
|
/workspace.xml
|
||||||
# 基于编辑器的 HTTP 客户端请求
|
# 基于编辑器的 HTTP 客户端请求
|
||||||
/httpRequests/
|
/httpRequests/
|
||||||
# Datasource local storage ignored files
|
# Datasource local storage ignored files
|
||||||
/dataSources/
|
/dataSources/
|
||||||
/dataSources.local.xml
|
/dataSources.local.xml
|
||||||
|
@ -1,20 +1,20 @@
|
|||||||
/*
|
/*
|
||||||
Navicat Premium Data Transfer
|
Navicat Premium Data Transfer
|
||||||
|
|
||||||
Source Server : localhost MySQL 8.0
|
Source Server : localhost MySQL 8.0
|
||||||
Source Server Type : MySQL
|
Source Server Type : MySQL
|
||||||
Source Server Version : 80012
|
Source Server Version : 80012
|
||||||
Source Host : localhost:3306
|
Source Host : localhost:3306
|
||||||
Source Schema : epp
|
Source Schema : epp
|
||||||
|
|
||||||
Target Server Type : MySQL
|
Target Server Type : MySQL
|
||||||
Target Server Version : 80012
|
Target Server Version : 80012
|
||||||
File Encoding : 65001
|
File Encoding : 65001
|
||||||
|
|
||||||
Date: 21/10/2022 01:13:14
|
Date: 21/10/2022 01:13:14
|
||||||
*/
|
*/
|
||||||
|
|
||||||
SET NAMES utf8mb4;
|
SET NAMES utf8mb4;
|
||||||
SET FOREIGN_KEY_CHECKS = 0;
|
SET FOREIGN_KEY_CHECKS = 0;
|
||||||
|
|
||||||
SET FOREIGN_KEY_CHECKS = 1;
|
SET FOREIGN_KEY_CHECKS = 1;
|
||||||
|
@ -1,63 +1,63 @@
|
|||||||
<template>
|
<template>
|
||||||
<el-menu active-text-color="#ffd04b" background-color="#151513" class="el-menu-vertical" default-active="2"
|
<el-menu active-text-color="#ffd04b" background-color="#151513" class="el-menu-vertical" default-active="2"
|
||||||
text-color="#fff" :collapse="isCollapse" @open="handleOpen" @close="handleClose">
|
text-color="#fff" :collapse="isCollapse" @open="handleOpen" @close="handleClose">
|
||||||
<el-sub-menu index="1">
|
<el-sub-menu index="1">
|
||||||
<template #title>
|
<template #title>
|
||||||
<el-icon>
|
<el-icon>
|
||||||
<Location />
|
<Location />
|
||||||
</el-icon>
|
</el-icon>
|
||||||
<span>Navigator One</span>
|
<span>Navigator One</span>
|
||||||
</template>
|
</template>
|
||||||
<el-menu-item-group title="Group One">
|
<el-menu-item-group title="Group One">
|
||||||
<el-menu-item index="1-1">item one</el-menu-item>
|
<el-menu-item index="1-1">item one</el-menu-item>
|
||||||
<el-menu-item index="1-2">item two</el-menu-item>
|
<el-menu-item index="1-2">item two</el-menu-item>
|
||||||
</el-menu-item-group>
|
</el-menu-item-group>
|
||||||
<el-menu-item-group title="Group Two">
|
<el-menu-item-group title="Group Two">
|
||||||
<el-menu-item index="1-3">item three</el-menu-item>
|
<el-menu-item index="1-3">item three</el-menu-item>
|
||||||
</el-menu-item-group>
|
</el-menu-item-group>
|
||||||
<el-sub-menu index="1-4">
|
<el-sub-menu index="1-4">
|
||||||
<template #title>item four</template>
|
<template #title>item four</template>
|
||||||
<el-menu-item index="1-4-1">item one</el-menu-item>
|
<el-menu-item index="1-4-1">item one</el-menu-item>
|
||||||
</el-sub-menu>
|
</el-sub-menu>
|
||||||
</el-sub-menu>
|
</el-sub-menu>
|
||||||
<el-menu-item index="2">
|
<el-menu-item index="2">
|
||||||
<el-icon>
|
<el-icon>
|
||||||
<IconMenu />
|
<IconMenu />
|
||||||
</el-icon>
|
</el-icon>
|
||||||
<span>Navigator Two</span>
|
<span>Navigator Two</span>
|
||||||
</el-menu-item>
|
</el-menu-item>
|
||||||
<el-menu-item index="3" disabled>
|
<el-menu-item index="3" disabled>
|
||||||
<el-icon>
|
<el-icon>
|
||||||
<Document />
|
<Document />
|
||||||
</el-icon>
|
</el-icon>
|
||||||
<span>Navigator Three</span>
|
<span>Navigator Three</span>
|
||||||
</el-menu-item>
|
</el-menu-item>
|
||||||
<el-menu-item index="4">
|
<el-menu-item index="4">
|
||||||
<el-icon>
|
<el-icon>
|
||||||
<setting />
|
<setting />
|
||||||
</el-icon>
|
</el-icon>
|
||||||
<span>Navigator Four</span>
|
<span>Navigator Four</span>
|
||||||
</el-menu-item>
|
</el-menu-item>
|
||||||
</el-menu>
|
</el-menu>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import { Location, Menu as IconMenu, Document, Setting } from '@element-plus/icons-vue'
|
import { Location, Menu as IconMenu, Document, Setting } from '@element-plus/icons-vue'
|
||||||
// import { ref } from 'vue'
|
// import { ref } from 'vue'
|
||||||
|
|
||||||
const isCollapse = false
|
const isCollapse = false
|
||||||
// const isCollapse = ref(true)
|
// const isCollapse = ref(true)
|
||||||
const handleOpen = (key, keyPath) => {
|
const handleOpen = (key, keyPath) => {
|
||||||
console.log(key, keyPath)
|
console.log(key, keyPath)
|
||||||
}
|
}
|
||||||
const handleClose = (key, keyPath) => {
|
const handleClose = (key, keyPath) => {
|
||||||
console.log(key, keyPath)
|
console.log(key, keyPath)
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.el-menu-vertical {
|
.el-menu-vertical {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
border: 0;
|
border: 0;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -1,30 +1,30 @@
|
|||||||
<template>
|
<template>
|
||||||
<el-menu class="el-menu" mode="horizontal" background-color="#f49e00" text-color="#fff" active-text-color="#ffd04b">
|
<el-menu class="el-menu" mode="horizontal" background-color="#f49e00" text-color="#fff" active-text-color="#ffd04b">
|
||||||
<el-menu-item index="1">Processing Center</el-menu-item>
|
<el-menu-item index="1">Processing Center</el-menu-item>
|
||||||
<el-sub-menu index="2">
|
<el-sub-menu index="2">
|
||||||
<template #title>Workspace</template>
|
<template #title>Workspace</template>
|
||||||
<el-menu-item index="2-1">item one</el-menu-item>
|
<el-menu-item index="2-1">item one</el-menu-item>
|
||||||
<el-menu-item index="2-2">item two</el-menu-item>
|
<el-menu-item index="2-2">item two</el-menu-item>
|
||||||
<el-menu-item index="2-3">item three</el-menu-item>
|
<el-menu-item index="2-3">item three</el-menu-item>
|
||||||
<el-sub-menu index="2-4">
|
<el-sub-menu index="2-4">
|
||||||
<template #title>item four</template>
|
<template #title>item four</template>
|
||||||
<el-menu-item index="2-4-1">item one</el-menu-item>
|
<el-menu-item index="2-4-1">item one</el-menu-item>
|
||||||
<el-menu-item index="2-4-2">item two</el-menu-item>
|
<el-menu-item index="2-4-2">item two</el-menu-item>
|
||||||
<el-menu-item index="2-4-3">item three</el-menu-item>
|
<el-menu-item index="2-4-3">item three</el-menu-item>
|
||||||
</el-sub-menu>
|
</el-sub-menu>
|
||||||
</el-sub-menu>
|
</el-sub-menu>
|
||||||
<el-menu-item index="3" disabled>Info</el-menu-item>
|
<el-menu-item index="3" disabled>Info</el-menu-item>
|
||||||
<el-menu-item index="4">Orders</el-menu-item>
|
<el-menu-item index="4">Orders</el-menu-item>
|
||||||
</el-menu>
|
</el-menu>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.el-menu {
|
.el-menu {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border: 0;
|
border: 0;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import { createApp } from 'vue'
|
import { createApp } from 'vue'
|
||||||
import App from './App.vue'
|
import App from './App.vue'
|
||||||
import router from './router'
|
import router from './router'
|
||||||
|
|
||||||
const app = createApp(App)
|
const app = createApp(App)
|
||||||
app.use(router).mount('#app')
|
app.use(router).mount('#app')
|
||||||
|
@ -1,16 +1,16 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="not-found">
|
<div class="not-found">
|
||||||
404 Not Found
|
404 Not Found
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
name: 'NotFound',
|
name: 'NotFound',
|
||||||
components: {}
|
components: {}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
Loading…
Reference in New Issue
Block a user