- You’ve successfully created a project with
- Vite +
- Vue 3.
-
-
-
-
-
diff --git a/RMS/RMS_front/vue_RMS_front/src/components/TheWelcome.vue b/RMS/RMS_front/vue_RMS_front/src/components/TheWelcome.vue
deleted file mode 100644
index dab95367d4cb1dfe39b9c898fcd087ee3eda35b6..0000000000000000000000000000000000000000
--- a/RMS/RMS_front/vue_RMS_front/src/components/TheWelcome.vue
+++ /dev/null
@@ -1,88 +0,0 @@
-
-
-
-
-
-
-
- Documentation
-
- Vue’s
- official documentation
- provides you with all information you need to get started.
-
-
-
-
-
-
- Tooling
-
- This project is served and bundled with
- Vite. The
- recommended IDE setup is
- VSCode +
- Volar. If
- you need to test your components and web pages, check out
- Cypress and
- Cypress Component Testing.
-
-
-
- More instructions are available in README.md.
-
-
-
-
-
-
- Ecosystem
-
- Get official tools and libraries for your project:
- Pinia,
- Vue Router,
- Vue Test Utils, and
- Vue Dev Tools. If
- you need more resources, we suggest paying
- Awesome Vue
- a visit.
-
-
-
-
-
-
- Community
-
- Got stuck? Ask your question on
- Vue Land, our official
- Discord server, or
- StackOverflow. You should also subscribe to
- our mailing list and follow
- the official
- @vuejs
- twitter account for latest news in the Vue world.
-
-
-
-
-
-
- Support Vue
-
- As an independent project, Vue relies on community backing for its sustainability. You can help
- us by
- becoming a sponsor.
-
-
diff --git a/RMS/RMS_front/vue_RMS_front/src/components/WelcomeItem.vue b/RMS/RMS_front/vue_RMS_front/src/components/WelcomeItem.vue
deleted file mode 100644
index 6d7086aea08fbb770b2f570dbeb4f8fcd86cb291..0000000000000000000000000000000000000000
--- a/RMS/RMS_front/vue_RMS_front/src/components/WelcomeItem.vue
+++ /dev/null
@@ -1,87 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/RMS/RMS_front/vue_RMS_front/src/components/icons/IconCommunity.vue b/RMS/RMS_front/vue_RMS_front/src/components/icons/IconCommunity.vue
deleted file mode 100644
index 2dc8b055253af30fb797037e2fe260505f0cf711..0000000000000000000000000000000000000000
--- a/RMS/RMS_front/vue_RMS_front/src/components/icons/IconCommunity.vue
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
diff --git a/RMS/RMS_front/vue_RMS_front/src/components/icons/IconDocumentation.vue b/RMS/RMS_front/vue_RMS_front/src/components/icons/IconDocumentation.vue
deleted file mode 100644
index 6d4791cfbcf2782b3e5ffbabd042d4c47b2fbbed..0000000000000000000000000000000000000000
--- a/RMS/RMS_front/vue_RMS_front/src/components/icons/IconDocumentation.vue
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
diff --git a/RMS/RMS_front/vue_RMS_front/src/components/icons/IconEcosystem.vue b/RMS/RMS_front/vue_RMS_front/src/components/icons/IconEcosystem.vue
deleted file mode 100644
index c3a4f078c0bd340a33c61ea9ecd8a755d03571ed..0000000000000000000000000000000000000000
--- a/RMS/RMS_front/vue_RMS_front/src/components/icons/IconEcosystem.vue
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
diff --git a/RMS/RMS_front/vue_RMS_front/src/components/icons/IconSupport.vue b/RMS/RMS_front/vue_RMS_front/src/components/icons/IconSupport.vue
deleted file mode 100644
index 7452834d3ef961ce24c3a072ddba2620b6158bae..0000000000000000000000000000000000000000
--- a/RMS/RMS_front/vue_RMS_front/src/components/icons/IconSupport.vue
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
diff --git a/RMS/RMS_front/vue_RMS_front/src/components/icons/IconTooling.vue b/RMS/RMS_front/vue_RMS_front/src/components/icons/IconTooling.vue
deleted file mode 100644
index 660598d7c76644ffe126a1a1feb1606650bfb937..0000000000000000000000000000000000000000
--- a/RMS/RMS_front/vue_RMS_front/src/components/icons/IconTooling.vue
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
-
diff --git a/RMS/RMS_front/vue_RMS_front/src/main.js b/RMS/RMS_front/vue_RMS_front/src/main.js
index 0ac3a5ff0ceea45d1a9066b2df477773977a338b..2a9fe23564f6d328fdce9a59bae19f58ff4569f7 100644
--- a/RMS/RMS_front/vue_RMS_front/src/main.js
+++ b/RMS/RMS_front/vue_RMS_front/src/main.js
@@ -1,6 +1,16 @@
-import './assets/main.css'
-
+import elementPlus from "element-plus";
import { createApp } from 'vue'
+import "element-plus/dist/index.css";
+import * as Icons from "@element-plus/icons-vue"
import App from './App.vue'
+import router from '@/router'
+
+const app = createApp(App)
-createApp(App).mount('#app')
+//注册所有图标
+Object.keys(Icons).forEach(key =>{
+ app.component(key,Icons[key])
+})
+app.use(router)
+app.use(elementPlus)
+app.mount('#app')
diff --git a/RMS/RMS_front/vue_RMS_front/src/router/index.js b/RMS/RMS_front/vue_RMS_front/src/router/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..f10f4114e0fc5765bb966a3b4fd47ddaec8d99e5
--- /dev/null
+++ b/RMS/RMS_front/vue_RMS_front/src/router/index.js
@@ -0,0 +1,52 @@
+import { createRouter,createWebHistory } from "vue-router";
+import System from '@/views/system/system.vue';
+import userSys from "@/views/system/userSys.vue";
+import RoleSys from "@/views/system/roleSys.vue";
+import LogSys from "@/views/system/logSys.vue";
+import MenuSys from "@/views/system/menuSys.vue";
+import DepSys from "@/views/system/depSys.vue";
+import PostSys from "@/views/system/postSys.vue";
+import Index from "@/views/index.vue";
+import Land from "@/views/land.vue"
+
+const router = createRouter({
+ history: createWebHistory(),
+ routes:[
+ {
+ path:'/',
+ name:'/',
+ component:System,
+ redirect:'/index',
+ children:[
+ {
+ path:'/index',
+ component:Index
+ },
+ {
+ path:'/system/roleSys',
+ component:RoleSys
+ },
+ {
+ path:'/system/depSys',
+ component:DepSys
+ },
+ {
+ path:'/system/menuSys',
+ component:MenuSys
+ },
+ {
+ path:'/system/postSys',
+ component:PostSys
+ },
+ {
+ path:'/system/userSys',
+ component:userSys
+ }
+
+ ]
+ },
+
+ ]
+})
+
+export default router;
\ No newline at end of file
diff --git a/RMS/RMS_front/vue_RMS_front/src/views/head/breadCrumb.vue b/RMS/RMS_front/vue_RMS_front/src/views/head/breadCrumb.vue
new file mode 100644
index 0000000000000000000000000000000000000000..d21a4f0c8629c21735ac359e24d0c61f13d14dfd
--- /dev/null
+++ b/RMS/RMS_front/vue_RMS_front/src/views/head/breadCrumb.vue
@@ -0,0 +1,25 @@
+
+
+
+
+
+ 龙傲天
+ 系统管理
+ 用户管理
+
+
+
+
+
\ No newline at end of file
diff --git a/RMS/RMS_front/vue_RMS_front/src/views/index.vue b/RMS/RMS_front/vue_RMS_front/src/views/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..93a83b3b1fc6a94a8689edeac745725a5ec21fe8
--- /dev/null
+++ b/RMS/RMS_front/vue_RMS_front/src/views/index.vue
@@ -0,0 +1,11 @@
+
+
+
+这是首页
+
+
+
\ No newline at end of file
diff --git a/RMS/RMS_front/vue_RMS_front/src/views/land.vue b/RMS/RMS_front/vue_RMS_front/src/views/land.vue
new file mode 100644
index 0000000000000000000000000000000000000000..f16a47c195da6f270691d04a59a489728fae6910
--- /dev/null
+++ b/RMS/RMS_front/vue_RMS_front/src/views/land.vue
@@ -0,0 +1,133 @@
+
+
+
+
+
+
+
+ {{ "请先登录" }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 记住密码
+
+
+ 忘记密码?
+
+
+
+ 登录
+ 注册
+
+
+
+
+
+
\ No newline at end of file
diff --git a/RMS/RMS_front/vue_RMS_front/src/views/system/depSys.vue b/RMS/RMS_front/vue_RMS_front/src/views/system/depSys.vue
new file mode 100644
index 0000000000000000000000000000000000000000..74e71148ca96263f4c156cf08dfc3c711f6c390b
--- /dev/null
+++ b/RMS/RMS_front/vue_RMS_front/src/views/system/depSys.vue
@@ -0,0 +1,62 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/RMS/RMS_front/vue_RMS_front/src/views/system/logSys.vue b/RMS/RMS_front/vue_RMS_front/src/views/system/logSys.vue
new file mode 100644
index 0000000000000000000000000000000000000000..f79cdd818fdba961676aed6a1a37b9b4783d4ea8
--- /dev/null
+++ b/RMS/RMS_front/vue_RMS_front/src/views/system/logSys.vue
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/RMS/RMS_front/vue_RMS_front/src/views/system/menuSys.vue b/RMS/RMS_front/vue_RMS_front/src/views/system/menuSys.vue
new file mode 100644
index 0000000000000000000000000000000000000000..67f7a15827740a5ba2364f18564853198e4a73ec
--- /dev/null
+++ b/RMS/RMS_front/vue_RMS_front/src/views/system/menuSys.vue
@@ -0,0 +1,189 @@
+
+
+
+
+
+
+
+
+
+ 十 添加
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/RMS/RMS_front/vue_RMS_front/src/views/system/postSys.vue b/RMS/RMS_front/vue_RMS_front/src/views/system/postSys.vue
new file mode 100644
index 0000000000000000000000000000000000000000..bdc31d2560247191dd609bfabed032c108895a72
--- /dev/null
+++ b/RMS/RMS_front/vue_RMS_front/src/views/system/postSys.vue
@@ -0,0 +1,123 @@
+
+
+
+
+
+
+