|
@@ -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'),
|
|
|
- },
|
|
|
],
|
|
|
}
|
|
|
|