This commit is contained in:
2023-05-31 21:22:52 +08:00
parent 54f3b261f7
commit 719669c666
3 changed files with 17 additions and 14 deletions

View File

@ -116,6 +116,20 @@ export const dynamicRoutes = [
},
],
},
{
path: '/system/dict-data',
component: Layout,
hidden: true,
permissions: ['system:dict:list'],
children: [
{
path: 'index/:dictId(\\d+)',
component: () => import('@/views/system/dict/data'),
name: 'Data',
meta: { title: '字典数据', activeMenu: '/system/dict' }
}
]
},
];
const router = createRouter({