新增赛会设置页面

This commit is contained in:
wuyibo
2022-11-09 10:31:00 +08:00
parent d8273f8a2f
commit f320b1d36a
4 changed files with 245 additions and 2 deletions

View File

@@ -120,6 +120,20 @@ export const dynamicRoutes = [
}
]
},
{
path: '/system/competition',
component: Layout,
hidden: true,
permissions: ['system:user:edit'],
children: [
{
path: 'set/:id(\\d+)',
component: () => import('@/views/system/competitionSet/index'),
name: 'competitionSet',
meta: { title: '赛会配置', activeMenu: '/system/competition' }
}
]
},
{
path: '/system/dict-data',
component: Layout,