This commit is contained in:
2023-07-03 22:16:52 +08:00
parent 6cfa15b7ee
commit cdef1eae90
9 changed files with 845 additions and 1 deletions

View File

@ -130,6 +130,20 @@ export const dynamicRoutes = [
},
],
},
{
path: '/tool/gen-edit',
component: Layout,
hidden: true,
permissions: ['tool:gen:edit'],
children: [
{
path: 'index/:tableId(\\d+)',
component: () => import('@/views/tool/gen/editTable'),
name: 'GenEdit',
meta: { title: '修改生成配置', activeMenu: '/tool/gen' }
}
]
}
];
const router = createRouter({