routes.js 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. export default [
  2. {
  3. path: '/user',
  4. layout: false,
  5. routes: [
  6. {
  7. path: '/user',
  8. routes: [
  9. {
  10. name: 'login',
  11. path: '/user/login',
  12. component: '@/pages/user/Login',
  13. },
  14. ],
  15. },
  16. {
  17. component: '@/pages/404',
  18. },
  19. ],
  20. },
  21. {
  22. path: '/dashboard',
  23. name: '工作台',
  24. access:'admin',
  25. icon: 'DashboardOutlined',
  26. component: './dashboard',
  27. },
  28. {
  29. path: '/',
  30. access:'admin',
  31. redirect: '/dashboard',
  32. hideInMenu: true,
  33. },
  34. {
  35. path: '/banner',
  36. name: '轮播图列表',
  37. access:'admin',
  38. icon: 'PictureOutlined',
  39. component: '@/pages/banner',
  40. },
  41. {
  42. path: '/banner/edit.jsx',
  43. name: '轮播图编辑',
  44. hideInMenu: true,
  45. component: '@/pages/banner/edit.jsx',
  46. },
  47. {
  48. path: '/notice',
  49. name: '通知列表',
  50. access:'admin',
  51. icon: 'BellOutlined',
  52. component: '@/pages/notice',
  53. },
  54. {
  55. path: '/notice/edit.jsx',
  56. name: '通知编辑',
  57. hideInMenu: true,
  58. component: '@/pages/notice/edit.jsx',
  59. },
  60. {
  61. path: '/applicationList',
  62. name: '申请列表',
  63. access:'admin',
  64. icon: 'FieldTimeOutlined',
  65. component: '@/pages/applicationList',
  66. },
  67. {
  68. path: '/applicationList/detail.jsx',
  69. name: '申请详情',
  70. hideInMenu: true,
  71. component: '@/pages/applicationList/detail.jsx',
  72. },
  73. {
  74. path: '/examine',
  75. name: '审核列表',
  76. access:'auditor',
  77. icon: 'AuditOutlined',
  78. component: '@/pages/examine',
  79. },
  80. {
  81. path: '/examine/detail.jsx',
  82. name: '犬证审核',
  83. hideInMenu: true,
  84. component: '@/pages/examine/detail.jsx',
  85. },
  86. {
  87. path: '/certificateIssuance',
  88. name: '证件发放',
  89. access:'maker',
  90. icon: 'FileDoneOutlined',
  91. component: '@/pages/certificateIssuance',
  92. },
  93. {
  94. path: '/certificateIssuance/issuance.jsx',
  95. name: '证件发放详情',
  96. hideInMenu: true,
  97. component: '@/pages/certificateIssuance/issuance.jsx',
  98. },
  99. {
  100. path: '/cardNoList',
  101. name: '证件制卡',
  102. access:'admin',
  103. icon: 'CreditCardOutlined',
  104. component: '@/pages/cardNoList',
  105. },
  106. {
  107. path: '/cardList',
  108. name: '证件列表',
  109. access:'admin',
  110. icon: 'IdcardOutlined',
  111. component: '@/pages/cardList',
  112. },
  113. {
  114. path: '/cardList/detail.jsx',
  115. name: '证件详情',
  116. access:'admin',
  117. hideInMenu: true,
  118. component: '@/pages/cardList/detail.jsx',
  119. },
  120. {
  121. path: '/userList',
  122. name: '犬主列表',
  123. access:'admin',
  124. icon: 'SolutionOutlined',
  125. component: '@/pages/userList',
  126. },
  127. {
  128. path: '/person',
  129. name: '人员列表',
  130. access:'admin',
  131. icon: 'UserOutlined',
  132. component: '@/pages/person',
  133. },
  134. {
  135. path: '/BasicParameters',
  136. name: '系统参数',
  137. access:'admin',
  138. icon: 'SettingOutlined',
  139. component: '@/pages/BasicParameters',
  140. },
  141. {
  142. path: '/',
  143. redirect: '/welcome',
  144. },
  145. {
  146. component: './404',
  147. },
  148. ];