diff --git a/src/MainPage/Index.vue b/src/MainPage/Index.vue
new file mode 100644
index 0000000..47e647d
--- /dev/null
+++ b/src/MainPage/Index.vue
@@ -0,0 +1,3 @@
+
+ 这是主页
+
\ No newline at end of file
diff --git a/src/Manager/Header.vue b/src/Manager/Header.vue
new file mode 100644
index 0000000..0f6f59e
--- /dev/null
+++ b/src/Manager/Header.vue
@@ -0,0 +1,44 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Manager/LeftBar.vue b/src/Manager/LeftBar.vue
new file mode 100644
index 0000000..a7d6f0a
--- /dev/null
+++ b/src/Manager/LeftBar.vue
@@ -0,0 +1,85 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Manager/MainSection.vue b/src/Manager/MainSection.vue
new file mode 100644
index 0000000..840b2f0
--- /dev/null
+++ b/src/Manager/MainSection.vue
@@ -0,0 +1,7 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Manager/Manage.vue b/src/Manager/Manage.vue
new file mode 100644
index 0000000..e006bcf
--- /dev/null
+++ b/src/Manager/Manage.vue
@@ -0,0 +1,100 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/router/index.js b/src/router/index.js
index 75fa4cf..7e398a7 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -9,72 +9,14 @@ const router = createRouter({
component:()=>import('../App.vue')
},
{
- path:'/manage',
- name:'manage',
- component:()=>import('../manager/manage.vue'),
- children:[
- {
- path:'/manage/authority',
- component:()=>import('../manager/components/Authority.vue'),
- },
- {
- path:'/manage/carousel',
- component:()=>import('../manager/components/Carousel.vue'),
- },
- {
- path:'/manage/daily',
- component:()=>import('../manager/components/Daily.vue'),
- },
- {
- path:'/manage/log',
- component:()=>import('../manager/components/Log.vue'),
- },
- {
- path:'/manage/main',
- component:()=>import('../manager/components/Main.vue'),
- },
- {
- path:'/manage/message',
- component:()=>import('../manager/components/Message.vue'),
- },
- {
- path:'/manage/newsdisplay',
- component:()=>import('../manager/components/NewsDisplay.vue'),
- },
- {
- path:'/manage/newsinformation',
- component:()=>import('../manager/components/NewsInformation.vue'),
- },
- {
- path:'/manage/projectinformation',
- component:()=>import('../manager/components/ProjectInformation.vue'),
- },
- {
- path:'/manage/projectrecommend',
- component:()=>import('../manager/components/ProjectRecommend.vue'),
- },
- {
- path:'/manage/role',
- component:()=>import('../manager/components/Role.vue'),
- },
- {
- path:'/manage/teaminformation',
- component:()=>import('../manager/components/TeamInformation.vue'),
- },
- {
- path:'/manage/teamprofile',
- component:()=>import('../manager/components/TeamProfile.vue'),
- },
- {
- path:'/manage/user',
- component:()=>import('../manager/components/User.vue'),
- },
- {
- path:'/manage/userrecommend',
- component:()=>import('../manager/components/UserRecommend.vue'),
- },
- ]
- },
+ path:'/Manager',
+ name:'Manager',
+ component:()=>import('../Manager/Manage.vue'),
+ children:[{
+ path:'/Manager/User',
+ component:() =>import('../Manager/components/User.vue')
+ }]
+ }
]
})