diff --git a/src/router/index.ts b/src/router/index.ts index 2ab09dd..a6497db 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -93,104 +93,7 @@ export const constantRoutes: RouteRecordRaw[] = [ // 动态路由,基于用户权限动态去加载 export const dynamicRoutes: RouteRecordRaw[] = [ - { - path: '/system/user-auth', - component: Layout, - hidden: true, - permissions: ['system:user:edit'], - children: [ - { - path: 'role/:userId(\\d+)', - component: () => import('@/views/system/user/authRole.vue'), - name: 'AuthRole', - meta: { title: '分配角色', activeMenu: '/system/user', icon: '', noCache: true } - } - ] - }, - { - path: '/system/role-auth', - component: Layout, - hidden: true, - permissions: ['system:role:edit'], - children: [ - { - path: 'user/:roleId(\\d+)', - component: () => import('@/views/system/role/authUser.vue'), - name: 'AuthUser', - meta: { title: '分配用户', activeMenu: '/system/role', icon: '', noCache: true } - } - ] - }, - { - path: '/system/dict-data', - component: Layout, - hidden: true, - permissions: ['system:dict:list'], - children: [ - { - path: 'index/:dictId(\\d+)', - component: () => import('@/views/system/dict/data.vue'), - name: 'Data', - meta: { title: '字典数据', activeMenu: '/system/dict', icon: '', noCache: true } - } - ] - }, - { - path: '/system/oss-config', - component: Layout, - hidden: true, - permissions: ['system:ossConfig:list'], - children: [ - { - path: 'index', - component: () => import('@/views/system/oss/config.vue'), - name: 'OssConfig', - meta: { title: '配置管理', activeMenu: '/system/oss', icon: '', noCache: true } - } - ] - }, - { - path: '/tool/gen-edit', - component: Layout, - hidden: true, - permissions: ['tool:gen:edit'], - children: [ - { - path: 'index/:tableId(\\d+)', - component: () => import('@/views/tool/gen/editTable.vue'), - name: 'GenEdit', - meta: { title: '修改生成配置', activeMenu: '/tool/gen', icon: '', noCache: true } - } - ] - }, - { - path: '/workflow/leaveEdit', - component: Layout, - hidden: true, - permissions: ['workflow:leave:edit'], - children: [ - { - path: 'index', - component: () => import('@/views/workflow/leave/leaveEdit.vue'), - name: 'leaveEdit', - meta: { title: '请假申请', activeMenu: '/workflow/leave', noCache: true } - } - ] - }, - { - path: '/workflow/design', - component: Layout, - hidden: true, - permissions: ['workflow:leave:edit'], - children: [ - { - path: 'index', - component: () => import('@/views/workflow/processDefinition/design.vue'), - name: 'design', - meta: { title: '流程设计', activeMenu: '/workflow/processDefinition', noCache: true } - } - ] - } + ]; /**