routes.js 2.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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. icon: 'DashboardOutlined',
  25. component: './dashboard',
  26. },
  27. {
  28. path: '/',
  29. name: '工作台',//暂定
  30. redirect: '/person',
  31. hideInMenu: true,
  32. },
  33. {
  34. path: '/banner',
  35. name: '轮播图列表',
  36. icon: 'PictureOutlined',
  37. component: '@/pages/banner',
  38. },
  39. {
  40. path: '/banner/edit.jsx',
  41. name: '轮播图编辑',
  42. hideInMenu: true,
  43. component: '@/pages/banner/edit.jsx',
  44. },
  45. {
  46. path: '/notice',
  47. name: '通知列表',
  48. icon: 'BellOutlined',
  49. component: '@/pages/notice',
  50. },
  51. {
  52. path: '/notice/edit.jsx',
  53. name: '通知编辑',
  54. hideInMenu: true,
  55. component: '@/pages/notice/edit.jsx',
  56. },
  57. {
  58. path: '/applicationList',
  59. name: '申请列表',
  60. icon: 'FieldTimeOutlined',
  61. component: '@/pages/applicationList',
  62. },
  63. {
  64. path: '/applicationList/detail.jsx',
  65. name: '申请详情',
  66. hideInMenu: true,
  67. component: '@/pages/applicationList/detail.jsx',
  68. },
  69. {
  70. path: '/examine',
  71. name: '审核列表',
  72. icon: 'AuditOutlined',
  73. component: '@/pages/examine',
  74. },
  75. {
  76. path: '/examine/detail.jsx',
  77. name: '犬证审核',
  78. hideInMenu: true,
  79. component: '@/pages/examine/detail.jsx',
  80. },
  81. {
  82. path: '/certificateIssuance',
  83. name: '证件发放',
  84. icon: 'FileDoneOutlined',
  85. component: '@/pages/certificateIssuance',
  86. },
  87. {
  88. path: '/certificateIssuance/issuance.jsx',
  89. name: '证件发放详情',
  90. hideInMenu: true,
  91. component: '@/pages/certificateIssuance/issuance.jsx',
  92. },
  93. {
  94. path: '/cardNoList',
  95. name: '证件制卡',
  96. icon: 'CreditCardOutlined',
  97. component: '@/pages/cardNoList',
  98. },
  99. {
  100. path: '/cardList',
  101. name: '证件列表',
  102. icon: 'IdcardOutlined',
  103. component: '@/pages/cardList',
  104. },
  105. {
  106. path: '/cardList/detail.jsx',
  107. name: '证件详情',
  108. hideInMenu: true,
  109. component: '@/pages/cardList/detail.jsx',
  110. },
  111. {
  112. path: '/userList',
  113. name: '犬主列表',
  114. icon: 'SolutionOutlined',
  115. component: '@/pages/userList',
  116. },
  117. {
  118. path: '/person',
  119. name: '人员列表',
  120. icon: 'UserOutlined',
  121. component: '@/pages/person',
  122. },
  123. {
  124. path: '/BasicParameters',
  125. name: '系统参数',
  126. icon: 'SettingOutlined',
  127. component: '@/pages/BasicParameters',
  128. },
  129. {
  130. path: '/',
  131. redirect: '/welcome',
  132. },
  133. {
  134. component: './404',
  135. },
  136. ];