491 lines
17 KiB
JavaScript
491 lines
17 KiB
JavaScript
// eslint-disable-next-line
|
|
import { UserLayout, BasicLayout, BlankLayout } from '@/layouts'
|
|
import { bxAnaalyse } from '@/core/icons'
|
|
|
|
const RouteView = {
|
|
name: 'RouteView',
|
|
render: (h) => h('router-view')
|
|
}
|
|
|
|
export const asyncRouterMap = [
|
|
{
|
|
path: '/',
|
|
name: 'index',
|
|
component: BasicLayout,
|
|
meta: { title: 'menu.home' },
|
|
redirect: '/dashboard/workplace',
|
|
children: [
|
|
// dashboard
|
|
{
|
|
path: '/dashboard',
|
|
name: 'dashboard',
|
|
redirect: '/dashboard/workplace',
|
|
component: RouteView,
|
|
meta: { title: 'menu.dashboard', keepAlive: true, icon: bxAnaalyse, permission: ['dashboard'] },
|
|
children: [
|
|
{
|
|
path: '/dashboard/workplace',
|
|
name: 'Workplace',
|
|
component: () => import('@/views/dashboard/Workplace'),
|
|
meta: { title: 'menu.dashboard.workplace', keepAlive: true, permission: ['dashboard'] }
|
|
}
|
|
]
|
|
},
|
|
// 权限管理
|
|
{
|
|
path: '/security',
|
|
name: 'security',
|
|
redirect: '/security/user',
|
|
component: RouteView,
|
|
meta: { title: '系统设置', keepAlive: true, icon: bxAnaalyse, permission: ['security'] },
|
|
children: [
|
|
{
|
|
path: '/security/user',
|
|
name: 'SecurityUser',
|
|
component: () => import('@/views/security/user/UserList'),
|
|
meta: { title: '用户管理', keepAlive: true, permission: ['security'] }
|
|
},
|
|
{
|
|
path: '/security/role',
|
|
name: 'SecurityRole',
|
|
component: () => import('@/views/security/role/RoleList'),
|
|
meta: { title: '角色管理', keepAlive: true }
|
|
},
|
|
{
|
|
path: '/security/menu',
|
|
name: 'SecurityMenu',
|
|
component: () => import('@/views/security/menu/MenuList'),
|
|
meta: { title: '菜单管理', keepAlive: true }
|
|
},
|
|
{
|
|
path: '/sys/dictionary',
|
|
name: 'DictionaryList',
|
|
component: () => import('@/views/sys/dictionary/DictionaryList'),
|
|
meta: { title: '数据词典', keepAlive: true }
|
|
},
|
|
{
|
|
path: '/sys/oss',
|
|
name: 'OssList',
|
|
component: () => import('@/views/sys/oss/OssList'),
|
|
meta: { title: '文件中心', keepAlive: true }
|
|
}
|
|
]
|
|
},
|
|
// 项目管理
|
|
{
|
|
path: '/project',
|
|
redirect: '/project/list',
|
|
component: RouteView,
|
|
meta: { title: '项目管理', icon: bxAnaalyse, permission: ['from'] },
|
|
children: [
|
|
{
|
|
path: '/project/list',
|
|
name: 'projectList',
|
|
component: () => import('@/views/project/ProjectList'),
|
|
meta: { title: '自主项目', keepAlive: true, permission: ['form'] },
|
|
},
|
|
// {
|
|
// path: '/project/add',
|
|
// name: 'ProjectForm',
|
|
// component: () => import('@/views/project/ProjectForm'),
|
|
// meta: { title: '新增项目', keepAlive: true, permission: ['form'], show: false }
|
|
// },
|
|
{
|
|
path: '/project/projectStepForm',
|
|
name: 'projectStepForm',
|
|
component: () => import('@/views/project/form/ProjectStepForm'),
|
|
meta: { title: '新增项目-分布', keepAlive: true, permission: ['form'] }
|
|
},
|
|
// {
|
|
// path: '/project/unitSelect',
|
|
// name: 'unitSelect',
|
|
// component: () => import('@/views/project/ProjectUnitSelect'),
|
|
// meta: { title: '选择单位', keepAlive: true, permission: ['form'] }
|
|
// },
|
|
{
|
|
path: '/form/step-form',
|
|
name: 'StepForm',
|
|
component: () => import('@/views/form/stepForm/StepForm'),
|
|
meta: { title: '系统推荐', keepAlive: true, permission: ['form'] }
|
|
},
|
|
{
|
|
path: '/form/advanced-form',
|
|
name: 'AdvanceForm',
|
|
component: () => import('@/views/form/advancedForm/AdvancedForm'),
|
|
meta: { title: '终端培训', keepAlive: true, permission: ['form'] }
|
|
}
|
|
]
|
|
},
|
|
// 课程管理
|
|
{
|
|
path: '/courseManagement',
|
|
redirect: '/courseManagement/course/courseList',
|
|
component: RouteView,
|
|
meta: { title: '课程管理', icon: bxAnaalyse, permission: ['from'] },
|
|
children: [
|
|
{
|
|
path: '/courseManagement/course/courseList',
|
|
name: 'courseList',
|
|
component: () => import('@/views/course/CourseList'),
|
|
meta: { title: '系统课程', keepAlive: true, permission: ['form'] }
|
|
},
|
|
{
|
|
path: '/courseManagement/customCourseList',
|
|
name: 'customCourse',
|
|
component: () => import('@/views/course/customCourseList'),
|
|
meta: { title: '自制课程', keepAlive: true, permission: ['form'] }
|
|
},
|
|
{
|
|
path: '/form/advanced-form',
|
|
name: 'AdvanceForm',
|
|
component: () => import('@/views/form/advancedForm/AdvancedForm'),
|
|
meta: { title: '资源库', keepAlive: true, permission: ['form'] }
|
|
}
|
|
]
|
|
},
|
|
// 档案管理
|
|
{
|
|
path: "/archives",
|
|
redirect: "/archives/user",
|
|
component: RouteView,
|
|
meta: { title: '档案管理', icon: 'profile', permission: ['form'] },
|
|
children: [
|
|
{
|
|
path: "/archives/user",
|
|
name: "archivesUser",
|
|
component: () => import('@/views/archives/user/Index'),
|
|
meta: { title: '人员档案', keepAlive: true, permission: ['form'] }
|
|
}
|
|
]
|
|
},
|
|
// forms
|
|
{
|
|
path: '/form',
|
|
redirect: '/form/base-form',
|
|
component: RouteView,
|
|
meta: { title: '表单页', icon: 'form', permission: ['form'] },
|
|
children: [
|
|
{
|
|
path: '/form/base-form',
|
|
name: 'BaseForm',
|
|
component: () => import('@/views/form/basicForm/Index'),
|
|
meta: { title: '基础表单', keepAlive: true, permission: ['form'] }
|
|
},
|
|
{
|
|
path: '/form/step-form',
|
|
name: 'StepForm',
|
|
component: () => import('@/views/form/stepForm/StepForm'),
|
|
meta: { title: '分步表单', keepAlive: true, permission: ['form'] }
|
|
},
|
|
{
|
|
path: '/form/advanced-form',
|
|
name: 'AdvanceForm',
|
|
component: () => import('@/views/form/advancedForm/AdvancedForm'),
|
|
meta: { title: '高级表单', keepAlive: true, permission: ['form'] }
|
|
}
|
|
]
|
|
},
|
|
|
|
// list
|
|
{
|
|
path: '/list',
|
|
name: 'list',
|
|
component: RouteView,
|
|
redirect: '/list/table-list',
|
|
meta: { title: '列表页', icon: 'table', permission: ['table'] },
|
|
children: [
|
|
{
|
|
path: '/list/table-list/:pageNo([1-9]\\d*)?',
|
|
name: 'TableListWrapper',
|
|
hideChildrenInMenu: true, // 强制显示 MenuItem 而不是 SubMenu
|
|
component: () => import('@/views/list/TableList'),
|
|
meta: { title: '查询表格', keepAlive: true, permission: ['table'] }
|
|
},
|
|
{
|
|
path: '/list/basic-list',
|
|
name: 'BasicList',
|
|
component: () => import('@/views/list/BasicList'),
|
|
meta: { title: '标准列表', keepAlive: true, permission: ['table'] }
|
|
},
|
|
{
|
|
path: '/list/card',
|
|
name: 'CardList',
|
|
component: () => import('@/views/list/CardList'),
|
|
meta: { title: '卡片列表', keepAlive: true, permission: ['table'] }
|
|
},
|
|
{
|
|
path: '/list/search',
|
|
name: 'SearchList',
|
|
component: () => import('@/views/list/search/SearchLayout'),
|
|
redirect: '/list/search/article',
|
|
meta: { title: '搜索列表', keepAlive: true, permission: ['table'] },
|
|
children: [
|
|
{
|
|
path: '/list/search/article',
|
|
name: 'SearchArticles',
|
|
component: () => import('../views/list/search/Article'),
|
|
meta: { title: '搜索列表(文章)', permission: ['table'] }
|
|
},
|
|
{
|
|
path: '/list/search/project',
|
|
name: 'SearchProjects',
|
|
component: () => import('../views/list/search/Projects'),
|
|
meta: { title: '搜索列表(项目)', permission: ['table'] }
|
|
},
|
|
{
|
|
path: '/list/search/application',
|
|
name: 'SearchApplications',
|
|
component: () => import('../views/list/search/Applications'),
|
|
meta: { title: '搜索列表(应用)', permission: ['table'] }
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
// profile
|
|
{
|
|
path: '/profile',
|
|
name: 'profile',
|
|
component: RouteView,
|
|
redirect: '/profile/basic',
|
|
meta: { title: '详情页', icon: 'profile', permission: ['profile'] },
|
|
children: [
|
|
{
|
|
path: '/profile/basic',
|
|
name: 'ProfileBasic',
|
|
component: () => import('@/views/profile/basic/Index'),
|
|
meta: { title: '基础详情页', permission: ['profile'] }
|
|
},
|
|
{
|
|
path: '/profile/advanced',
|
|
name: 'ProfileAdvanced',
|
|
component: () => import('@/views/profile/advanced/Advanced'),
|
|
meta: { title: '高级详情页', permission: ['profile'] }
|
|
}
|
|
]
|
|
},
|
|
// result
|
|
{
|
|
path: '/result',
|
|
name: 'result',
|
|
component: RouteView,
|
|
redirect: '/result/success',
|
|
meta: { title: '结果页', icon: 'check-circle-o', permission: ['result'] },
|
|
children: [
|
|
{
|
|
path: '/result/success',
|
|
name: 'ResultSuccess',
|
|
component: () => import(/* webpackChunkName: "result" */ '@/views/result/Success'),
|
|
meta: { title: '成功', keepAlive: false, hiddenHeaderContent: true, permission: ['result'] }
|
|
},
|
|
{
|
|
path: '/result/fail',
|
|
name: 'ResultFail',
|
|
component: () => import(/* webpackChunkName: "result" */ '@/views/result/Error'),
|
|
meta: { title: '失败', keepAlive: false, hiddenHeaderContent: true, permission: ['result'] }
|
|
}
|
|
]
|
|
},
|
|
// Exception
|
|
{
|
|
path: '/exception',
|
|
name: 'exception',
|
|
component: RouteView,
|
|
redirect: '/exception/403',
|
|
meta: { title: '异常页', icon: 'warning', permission: ['exception'] },
|
|
children: [
|
|
{
|
|
path: '/exception/403',
|
|
name: 'Exception403',
|
|
component: () => import(/* webpackChunkName: "fail" */ '@/views/exception/403'),
|
|
meta: { title: '403', permission: ['exception'] }
|
|
},
|
|
{
|
|
path: '/exception/404',
|
|
name: 'Exception404',
|
|
component: () => import(/* webpackChunkName: "fail" */ '@/views/exception/404'),
|
|
meta: { title: '404', permission: ['exception'] }
|
|
},
|
|
{
|
|
path: '/exception/500',
|
|
name: 'Exception500',
|
|
component: () => import(/* webpackChunkName: "fail" */ '@/views/exception/500'),
|
|
meta: { title: '500', permission: ['exception'] }
|
|
}
|
|
]
|
|
},
|
|
// account
|
|
{
|
|
path: '/account',
|
|
component: RouteView,
|
|
redirect: '/account/center',
|
|
name: 'account',
|
|
meta: { title: '个人页', icon: 'user', keepAlive: true, permission: ['user'] },
|
|
children: [
|
|
{
|
|
path: '/account/center',
|
|
name: 'center',
|
|
component: () => import('@/views/account/center/Index'),
|
|
meta: { title: '个人中心', keepAlive: true, permission: ['user'] }
|
|
},
|
|
{
|
|
path: '/account/settings',
|
|
name: 'settings',
|
|
component: () => import('@/views/account/settings/Index'),
|
|
meta: { title: '个人设置', hideHeader: true, permission: ['user'] },
|
|
redirect: '/account/settings/base',
|
|
hideChildrenInMenu: true,
|
|
children: [
|
|
{
|
|
path: '/account/settings/base',
|
|
name: 'BaseSettings',
|
|
component: () => import('@/views/account/settings/BaseSetting'),
|
|
meta: { title: '基本设置', hidden: true, permission: ['user'] }
|
|
},
|
|
{
|
|
path: '/account/settings/security',
|
|
name: 'SecuritySettings',
|
|
component: () => import('@/views/account/settings/Security'),
|
|
meta: { title: '安全设置', hidden: true, keepAlive: true, permission: ['user'] }
|
|
},
|
|
{
|
|
path: '/account/settings/custom',
|
|
name: 'CustomSettings',
|
|
component: () => import('@/views/account/settings/Custom'),
|
|
meta: { title: '个性化设置', hidden: true, keepAlive: true, permission: ['user'] }
|
|
},
|
|
{
|
|
path: '/account/settings/binding',
|
|
name: 'BindingSettings',
|
|
component: () => import('@/views/account/settings/Binding'),
|
|
meta: { title: '账户绑定', hidden: true, keepAlive: true, permission: ['user'] }
|
|
},
|
|
{
|
|
path: '/account/settings/notification',
|
|
name: 'NotificationSettings',
|
|
component: () => import('@/views/account/settings/Notification'),
|
|
meta: { title: '新消息通知', hidden: true, keepAlive: true, permission: ['user'] }
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
path: '/other',
|
|
name: 'otherPage',
|
|
component: RouteView,
|
|
meta: { title: '其他组件', icon: 'slack', permission: ['dashboard'] },
|
|
redirect: '/other/icon-selector',
|
|
children: [
|
|
{
|
|
path: '/other/icon-selector',
|
|
name: 'TestIconSelect',
|
|
component: () => import('@/views/other/IconSelectorView'),
|
|
meta: { title: 'IconSelector', icon: 'tool', keepAlive: true, permission: ['dashboard'] }
|
|
},
|
|
{
|
|
path: '/other/list',
|
|
component: RouteView,
|
|
meta: { title: '业务布局', icon: 'layout', permission: ['support'] },
|
|
redirect: '/other/list/tree-list',
|
|
children: [
|
|
{
|
|
path: '/other/list/tree-list',
|
|
name: 'TreeList',
|
|
component: () => import('@/views/other/TreeList'),
|
|
meta: { title: '树目录表格', keepAlive: true }
|
|
},
|
|
{
|
|
path: '/other/list/edit-table',
|
|
name: 'EditList',
|
|
component: () => import('@/views/other/TableInnerEditList'),
|
|
meta: { title: '内联编辑表格', keepAlive: true }
|
|
},
|
|
{
|
|
path: '/other/list/user-list',
|
|
name: 'UserList',
|
|
component: () => import('@/views/other/UserList'),
|
|
meta: { title: '用户列表', keepAlive: true }
|
|
},
|
|
{
|
|
path: '/other/list/role-list',
|
|
name: 'RoleList',
|
|
component: () => import('@/views/other/RoleList'),
|
|
meta: { title: '角色列表', keepAlive: true }
|
|
},
|
|
{
|
|
path: '/other/list/system-role',
|
|
name: 'SystemRole',
|
|
component: () => import('@/views/role/RoleList'),
|
|
meta: { title: '角色列表2', keepAlive: true }
|
|
},
|
|
{
|
|
path: '/other/list/permission-list',
|
|
name: 'PermissionList',
|
|
component: () => import('@/views/other/PermissionList'),
|
|
meta: { title: '权限列表', keepAlive: true }
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
path: '*', redirect: '/404', hidden: true
|
|
}
|
|
]
|
|
|
|
/**
|
|
* 基础路由
|
|
* @type { *[] }
|
|
*/
|
|
export const constantRouterMap = [
|
|
{
|
|
path: '/user',
|
|
component: UserLayout,
|
|
redirect: '/user/login',
|
|
hidden: true,
|
|
children: [
|
|
{
|
|
path: 'login',
|
|
name: 'login',
|
|
component: () => import(/* webpackChunkName: "user" */ '@/views/user/Login')
|
|
},
|
|
{
|
|
path: 'register',
|
|
name: 'register',
|
|
component: () => import(/* webpackChunkName: "user" */ '@/views/user/Register')
|
|
},
|
|
{
|
|
path: 'register-result',
|
|
name: 'registerResult',
|
|
component: () => import(/* webpackChunkName: "user" */ '@/views/user/RegisterResult')
|
|
},
|
|
{
|
|
path: 'recover',
|
|
name: 'recover',
|
|
component: undefined
|
|
}
|
|
]
|
|
},
|
|
{
|
|
path: '/404',
|
|
component: () => import(/* webpackChunkName: "fail" */ '@/views/exception/404')
|
|
},
|
|
{
|
|
path: '/dictionary',
|
|
component: BasicLayout,
|
|
redirect: '/sys/dictionary',
|
|
meta: { title: '词典分类' },
|
|
children: [
|
|
{
|
|
path: 'dictionaryItem/list/:id',
|
|
name: 'DictionaryItemList',
|
|
component: () => import('@/views/sys/dictionaryItem/DictionaryItemList'),
|
|
meta: { title: '词典项', keepAlive: true, permission: ['dictionaryItem'] }
|
|
}
|
|
]
|
|
},
|
|
]
|