zhaoke 2 жил өмнө
parent
commit
6cab0a8da9

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

@@ -19,6 +19,15 @@ 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',
@@ -38,13 +47,6 @@ 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/auth");
+    router.push("/userManagement/role/auth");
   }
 };
 const delRest = () => {