This commit is contained in:
2025-11-29 14:44:10 +08:00
parent 135696ef93
commit 0d4bbcd1f2
29 changed files with 776 additions and 316 deletions
+31
View File
@@ -42,4 +42,35 @@ export default [
},
],
},
{
path: '/martial',
component: Layout,
redirect: '/martial/order/list',
children: [
{
path: 'registration/detail',
name: '报名详情',
meta: {
keepAlive: false,
},
component: () => import(/* webpackChunkName: "martial" */ '@/views/martial/registration/detail.vue'),
},
{
path: 'schedule/list',
name: '编排',
meta: {
keepAlive: false,
},
component: () => import(/* webpackChunkName: "martial" */ '@/views/martial/schedule/list.vue'),
},
{
path: 'dispatch/list',
name: '调度',
meta: {
keepAlive: false,
},
component: () => import(/* webpackChunkName: "martial" */ '@/views/martial/dispatch/list.vue'),
},
],
},
];