|
|
|
@@ -14,10 +14,9 @@ export default [ |
|
|
|
{ |
|
|
|
path: '/', |
|
|
|
redirect: '/workspace', |
|
|
|
breadcrumb: '工作空间', |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: 'workspace', |
|
|
|
name: '工作空间', |
|
|
|
path: '/workspace', |
|
|
|
routes: [ |
|
|
|
{ |
|
|
|
@@ -41,6 +40,7 @@ export default [ |
|
|
|
}, |
|
|
|
{ |
|
|
|
path: '/account', |
|
|
|
name: '用户中心', |
|
|
|
routes: [ |
|
|
|
{ |
|
|
|
name: '用户中心', |
|
|
|
@@ -70,21 +70,21 @@ export default [ |
|
|
|
], |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: 'developmentEnvironment', |
|
|
|
name: '开发环境', |
|
|
|
path: '/developmentEnvironment', |
|
|
|
routes: [ |
|
|
|
{ |
|
|
|
name: '开发环境', |
|
|
|
path: '', |
|
|
|
component: './DevelopmentEnvironment/Editor', |
|
|
|
component: './DevelopmentEnvironment/List', |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: '创建编辑器', |
|
|
|
name: '创建开发环境', |
|
|
|
path: 'create', |
|
|
|
component: './DevelopmentEnvironment/Create', |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: '编辑器', |
|
|
|
name: '开发环境详情', |
|
|
|
path: 'editor', |
|
|
|
component: './DevelopmentEnvironment/Editor', |
|
|
|
}, |
|
|
|
@@ -306,47 +306,47 @@ export default [ |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: '用户管理', |
|
|
|
path: '/system/user', |
|
|
|
path: 'user', |
|
|
|
component: './System/User', |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: '角色管理', |
|
|
|
path: '/system/role', |
|
|
|
path: 'role', |
|
|
|
component: './System/Role', |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: '定时任务', |
|
|
|
path: '/system/job', |
|
|
|
path: 'job', |
|
|
|
component: './Monitor/Job', |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: '菜单管理', |
|
|
|
path: '/system/menu', |
|
|
|
path: 'menu', |
|
|
|
component: './System/Menu', |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: '部门管理', |
|
|
|
path: '/system/dept', |
|
|
|
path: 'dept', |
|
|
|
component: './System/Dept', |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: '岗位管理', |
|
|
|
path: '/system/post', |
|
|
|
path: 'post', |
|
|
|
component: './System/Post', |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: '字典管理', |
|
|
|
path: '/system/dict', |
|
|
|
path: 'dict', |
|
|
|
component: './System/Dict', |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: '字典数据', |
|
|
|
path: '/system/dict-data/index/:id', |
|
|
|
path: 'dict-data/index/:id', |
|
|
|
component: './System/DictData', |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: '分配用户', |
|
|
|
path: '/system/role-auth/user/:id', |
|
|
|
path: 'role-auth/user/:id', |
|
|
|
component: './System/Role/authUser', |
|
|
|
}, |
|
|
|
], |
|
|
|
|