fix: ReBuild And Fix Bug

This commit is contained in:
筱锋xiao_lfeng 2024-01-27 15:50:46 +08:00
parent 94256a805a
commit 0fa2c5c296
17 changed files with 25 additions and 15 deletions

10
src/Manager/Manager.vue Normal file
View File

@ -0,0 +1,10 @@
<template >
<div style="display: flex;flex-direction: column;">
<Header></Header>
<MainSection></MainSection>
</div>
</template>
<script setup>
import Header from "@/Manager/Header.vue";
import MainSection from "@/Manager/MainSection.vue";
</script>

View File

@ -15,56 +15,56 @@ const router = createRouter({
children:[ children:[
{ {
path:'/Manager/Main', path:'/Manager/Main',
component:() =>import('@/components/Main.vue') component:() =>import('@/Manager/components/Main.vue')
}, },
{ {
path:'/Manager/User', path:'/Manager/User',
component:() =>import('@/components/User.vue') component:() =>import('@/Manager/components/User.vue')
}, },
{ {
path:'/Manager/Role', path:'/Manager/Role',
component:() =>import('@/components/Role.vue') component:() =>import('@/Manager/components/Role.vue')
}, },
{ {
path:'/Manager/Authority', path:'/Manager/Authority',
component:() =>import('@/components/Authority.vue') component:() =>import('@/Manager/components/Authority.vue')
}, },
{ {
path:'/Manager/Log', path:'/Manager/Log',
component:() =>import('@/components/Log.vue') component:() =>import('@/Manager/components/Log.vue')
}, },
{ {
path:'/Manager/Daily', path:'/Manager/Daily',
component:() =>import('@/components/Daily.vue') component:() =>import('@/Manager/components/Daily.vue')
}, },
{ {
path:'/Manager/Message', path:'/Manager/Message',
component:() =>import('@/components/Message.vue') component:() =>import('@/Manager/components/Message.vue')
}, },
{ {
path:'/Manager/Carousel', path:'/Manager/Carousel',
component:() =>import('@/components/Carousel.vue') component:() =>import('@/Manager/components/Carousel.vue')
} ,{ } ,{
path:'/Manager/TeamProfile', path:'/Manager/TeamProfile',
component:() =>import('@/components/TeamProfile.vue') component:() =>import('@/Manager/components/TeamProfile.vue')
},{ },{
path:'/Manager/ProjectRecommend', path:'/Manager/ProjectRecommend',
component:() =>import('@/components/ProjectRecommend.vue') component:() =>import('@/Manager/components/ProjectRecommend.vue')
},{ },{
path:'/Manager/NewsDisplay', path:'/Manager/NewsDisplay',
component:() =>import('@/components/NewsDisplay.vue') component:() =>import('@/Manager/components/NewsDisplay.vue')
},{ },{
path:'/Manager/UserRecommend', path:'/Manager/UserRecommend',
component:() =>import('@/components/UserRecommend.vue') component:() =>import('@/Manager/components/UserRecommend.vue')
},{ },{
path:'/Manager/ProjectInformation', path:'/Manager/ProjectInformation',
component:() =>import('@/components/ProjectInformation.vue') component:() =>import('@/Manager/components/ProjectInformation.vue')
},{ },{
path:'/Manager/TeamInformation', path:'/Manager/TeamInformation',
component:() =>import('@/components/TeamInformation.vue') component:() =>import('@/Manager/components/TeamInformation.vue')
},{ },{
path:'/Manager/NewsInformation', path:'/Manager/NewsInformation',
component:() =>import('@/components/NewsInformation.vue') component:() =>import('@/Manager/components/NewsInformation.vue')
} }
] ]
} }