page select 9/10

This commit is contained in:
ailanyin
2023-06-01 17:33:23 +08:00
parent 719669c666
commit 274ce44dfe
12 changed files with 1330 additions and 747 deletions

View File

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