- 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 dab9536..0000000
--- 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 6d7086a..0000000
--- 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 2dc8b05..0000000
--- 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 6d4791c..0000000
--- 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 c3a4f07..0000000
--- 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 7452834..0000000
--- 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 660598d..0000000
--- 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 0ac3a5f..2a9fe23 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 0000000..f10f411
--- /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 0000000..d21a4f0
--- /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 0000000..93a83b3
--- /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 0000000..f16a47c
--- /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 0000000..74e7114
--- /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 0000000..f79cdd8
--- /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 0000000..67f7a15
--- /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 0000000..bdc31d2
--- /dev/null
+++ b/RMS/RMS_front/vue_RMS_front/src/views/system/postSys.vue
@@ -0,0 +1,123 @@
+
+
+
+
+
+
+