routes.ts 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. export default [
  2. {
  3. path: '/order',
  4. component: './Order/Billing',
  5. access: 'billing',
  6. },
  7. // 权限管理
  8. {
  9. path: '/jurisdiction',
  10. component: './admin/user/jurisdiction',
  11. access: 'jurisdiction',
  12. },
  13. // 角色管理
  14. {
  15. path: '/roleManage',
  16. component: './admin/user/roleManage',
  17. access: 'roleManage',
  18. },
  19. // 管理员列表
  20. {
  21. path: '/administrators',
  22. component: './admin/user/administrators',
  23. access: 'administrators',
  24. },
  25. // 业务分类管理
  26. {
  27. path: '/category',
  28. component: './admin/business/category',
  29. access: 'category',
  30. },
  31. // 业务项目管理
  32. {
  33. path: '/project',
  34. component: './admin/business/project',
  35. access: 'project',
  36. },
  37. // 组织机构
  38. {
  39. path: '/mechanism',
  40. component: './admin/organization/mechanism',
  41. access: 'mechanism',
  42. },
  43. // 人事档案
  44. {
  45. path: '/statistics',
  46. component: './personnel/archives/statistics',
  47. access: 'statistics',
  48. },
  49. {
  50. path: '/welcome',
  51. name: 'welcome',
  52. component: './Welcome',
  53. access: 'welcome',
  54. },
  55. {
  56. path: '/',
  57. redirect: '/welcome',
  58. },
  59. {
  60. path: '/user',
  61. layout: false,
  62. routes: [
  63. {
  64. path: '/user',
  65. routes: [
  66. {
  67. name: 'login',
  68. path: '/user/login',
  69. component: './user/login',
  70. },
  71. ],
  72. },
  73. ],
  74. },
  75. {
  76. component: './404',
  77. },
  78. ];