From 70f7c06e559d35a746b1b9239eeed32a320d63f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=96=AF=E7=8B=82=E7=9A=84=E7=8B=AE=E5=AD=90Li?= <15040126243@163.com> Date: Thu, 22 May 2025 17:32:16 +0800 Subject: [PATCH] =?UTF-8?q?update=20=E4=BC=98=E5=8C=96=20=E5=8A=A8?= =?UTF-8?q?=E6=80=81=E8=B7=AF=E7=94=B1=E8=BF=81=E7=A7=BB=E5=88=B0=E8=8F=9C?= =?UTF-8?q?=E5=8D=95=E7=AE=A1=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/index.ts | 99 +-------------------------------------------- 1 file changed, 1 insertion(+), 98 deletions(-) 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 } - } - ] - } + ]; /**