Browse Source

修改角色路由

zhaoke 2 years ago
parent
commit
1d85267ada
2 changed files with 8 additions and 10 deletions
  1. 7 9
      src/router/routes/routes-file-two.ts
  2. 1 1
      src/views/userManagement/role/index.vue

+ 7 - 9
src/router/routes/routes-file-two.ts

@@ -19,15 +19,6 @@ const HomeRoutes = {
       name: 'Role',
       meta: { title: '角色管理', elSvgIcon: 'Fold', icon: 'table' },
       component: () => import('@/views/userManagement/role/index.vue'),
-      children: [
-        {
-          path: 'auth',
-          name: 'Auth',
-          hidden: true,
-          meta: { title: '角色授权', elSvgIcon: 'Fold', icon: 'table' },
-          component: () => import('@/views/userManagement/role/auth.vue'),
-        },
-      ],
     },
     {
       path: 'account',
@@ -47,6 +38,13 @@ const HomeRoutes = {
       meta: { title: '应用管理', elSvgIcon: 'Fold', icon: 'table' },
       component: () => import('@/views/userManagement/application/index.vue'),
     },
+    {
+      path: 'auth',
+      name: 'Auth',
+      hidden: true,
+      meta: { title: '角色授权', elSvgIcon: 'Fold', icon: 'table' },
+      component: () => import('@/views/userManagement/role/auth.vue'),
+    },
   ],
 }
 

+ 1 - 1
src/views/userManagement/role/index.vue

@@ -114,7 +114,7 @@ const btnClick = (index, row, param) => {
     ruleForm.roleDesc = row.desc;
     ruleForm.roleStatus = row.status;
   } else {
-    router.push("/userManagement/role/auth");
+    router.push("/userManagement/auth");
   }
 };
 const delRest = () => {