feat: award页面迁移

This commit is contained in:
2026-02-06 15:42:57 +08:00
parent f011de4ef4
commit 275ec7bb97
95 changed files with 5462 additions and 154 deletions

View File

@@ -12,13 +12,21 @@ const router = createRouter({
routes: [
{
path: '/',
redirect: '/index'
},
{
path: '/index',
name: 'index',
component: () => import('../views/home/index.vue')
name:'award',
component:()=>import('@/views/AwardPage/container.vue'),
children:[
{
path:'',
name:'AwardIndex',
component:()=>import('@/views/AwardPage/index.vue'),
},
{
path:'contestants',
component:()=>import('@/views/AwardPage/apply.vue')
}
]
},
{
path: '/:pathMatch(.*)',