12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- export default [
- {
- path: '/order',
- component: './Order/Billing',
- access: 'billing',
- },
- // 权限管理
- {
- path: '/jurisdiction',
- component: './admin/user/jurisdiction',
- access: 'jurisdiction',
- },
- // 角色管理
- {
- path: '/roleManage',
- component: './admin/user/roleManage',
- access: 'roleManage',
- },
- // 管理员列表
- {
- path: '/administrators',
- component: './admin/user/administrators',
- access: 'administrators',
- },
- // 业务分类管理
- {
- path: '/category',
- component: './admin/business/category',
- access: 'category',
- },
- // 业务项目管理
- {
- path: '/project',
- component: './admin/business/project',
- access: 'project',
- },
- // 业务项目查询
- {
- path: '/projectQuery/:isReadOnly',
- component: './admin/business/project',
- access: 'projectReadOnly',
- },
- // 组织机构
- {
- path: '/mechanism',
- component: './admin/organization/mechanism',
- access: 'mechanism',
- },
- // 人事档案
- {
- path: '/statistics',
- component: './personnel/archives/statistics',
- // access: 'statistics',
- },
- {
- path: '/welcome',
- name: 'welcome',
- component: './Welcome',
- access: 'welcome',
- },
- {
- path: '/',
- redirect: '/welcome',
- },
- {
- path: '/user',
- layout: false,
- routes: [
- {
- path: '/user',
- routes: [
- {
- name: 'login',
- path: '/user/login',
- component: './user/login',
- },
- ],
- },
- ],
- },
- {
- component: './404',
- },
- ];
|