|
@@ -21,6 +21,7 @@ import Layout from '@/layout'
|
|
|
title: 'title'
|
|
|
icon: 'svg-name'
|
|
|
breadcrumb: false
|
|
|
+ activeMenu: '/system/user'
|
|
|
}
|
|
|
*/
|
|
|
|
|
@@ -80,7 +81,7 @@ export const constantRoutes = [
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
- path: '/auth',
|
|
|
+ path: '/system/user-auth',
|
|
|
component: Layout,
|
|
|
hidden: true,
|
|
|
children: [
|
|
@@ -88,12 +89,12 @@ export const constantRoutes = [
|
|
|
path: 'role/:userId(\\d+)',
|
|
|
component: (resolve) => require(['@/views/system/user/authRole'], resolve),
|
|
|
name: 'AuthRole',
|
|
|
- meta: { title: '分配角色'}
|
|
|
+ meta: { title: '分配角色', activeMenu: '/system/user'}
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
- path: '/auth',
|
|
|
+ path: '/system/role-auth',
|
|
|
component: Layout,
|
|
|
hidden: true,
|
|
|
children: [
|
|
@@ -101,46 +102,46 @@ export const constantRoutes = [
|
|
|
path: 'user/:roleId(\\d+)',
|
|
|
component: (resolve) => require(['@/views/system/role/authUser'], resolve),
|
|
|
name: 'AuthUser',
|
|
|
- meta: { title: '分配用户'}
|
|
|
+ meta: { title: '分配用户', activeMenu: '/system/role'}
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
- path: '/dict',
|
|
|
+ path: '/system/dict-data',
|
|
|
component: Layout,
|
|
|
hidden: true,
|
|
|
children: [
|
|
|
{
|
|
|
- path: 'type/data/:dictId(\\d+)',
|
|
|
+ path: 'index/:dictId(\\d+)',
|
|
|
component: (resolve) => require(['@/views/system/dict/data'], resolve),
|
|
|
name: 'Data',
|
|
|
- meta: { title: '字典数据', icon: '' }
|
|
|
+ meta: { title: '字典数据', activeMenu: '/system/dict'}
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
- path: '/job',
|
|
|
+ path: '/monitor/job-log',
|
|
|
component: Layout,
|
|
|
hidden: true,
|
|
|
children: [
|
|
|
{
|
|
|
- path: 'log',
|
|
|
+ path: 'index',
|
|
|
component: (resolve) => require(['@/views/monitor/job/log'], resolve),
|
|
|
name: 'JobLog',
|
|
|
- meta: { title: '调度日志' }
|
|
|
+ meta: { title: '调度日志', activeMenu: '/monitor/job'}
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
- path: '/gen',
|
|
|
+ path: '/tool/gen-edit',
|
|
|
component: Layout,
|
|
|
hidden: true,
|
|
|
children: [
|
|
|
{
|
|
|
- path: 'edit/:tableId(\\d+)',
|
|
|
+ path: 'index/:tableId(\\d+)',
|
|
|
component: (resolve) => require(['@/views/tool/gen/editTable'], resolve),
|
|
|
name: 'GenEdit',
|
|
|
- meta: { title: '修改生成配置' }
|
|
|
+ meta: { title: '修改生成配置', activeMenu: '/tool/gen'}
|
|
|
}
|
|
|
]
|
|
|
}
|