routes.js 6.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  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: './user/Login',
  13. },
  14. ],
  15. },
  16. {
  17. component: './404',
  18. },
  19. ],
  20. },
  21. {
  22. path: '/welcome',
  23. name: '工作台',
  24. icon: 'smile',
  25. component: './Welcome',
  26. },
  27. {
  28. path: '/MonitoringScreen',
  29. layout: false,
  30. name: '数据大屏',
  31. icon: 'DesktopOutlined',
  32. component: './MonitoringScreen',
  33. access: 'screen',
  34. },
  35. {
  36. path: '/ContentManagementSystem',
  37. name: 'CMS管理',
  38. icon: 'MediumOutlined',
  39. component: '../layouts/BasicLayout',
  40. access: 'cms',
  41. routes: [
  42. {
  43. path: '/ContentManagementSystem/InformationClassification',
  44. name: '资讯分类',
  45. access: 'cmstype',
  46. component: './ContentManagementSystem/InformationClassification',
  47. },
  48. {
  49. path: '/ContentManagementSystem/InformationList',
  50. name: '资讯列表',
  51. access: 'news',
  52. component: './ContentManagementSystem/InformationList',
  53. },
  54. {
  55. path: '/ContentManagementSystem/InformationList/edit.jsx',
  56. name: '资讯列表编辑',
  57. component: './ContentManagementSystem/InformationList/edit.jsx',
  58. hideInMenu: true,
  59. },
  60. {
  61. path: '/ContentManagementSystem/Advertisement',
  62. name: '广告位管理',
  63. access: 'banner',
  64. component: './ContentManagementSystem/Advertisement',
  65. },
  66. {
  67. path: '/ContentManagementSystem/Advertisement/edit.jsx',
  68. name: '广告位编辑',
  69. component: './ContentManagementSystem/Advertisement/edit.jsx',
  70. hideInMenu: true,
  71. },
  72. ],
  73. },
  74. {
  75. path: '/Machinery',
  76. name: '农机管理',
  77. icon: 'CarOutlined',
  78. access: 'agricultural',
  79. component: '../layouts/BasicLayout',
  80. routes: [
  81. {
  82. path: '/Machinery/GPS',
  83. name: '设备管理',
  84. access: 'device',
  85. component: './Machinery/GPS',
  86. },
  87. {
  88. path: '/Machinery/GPS/edit.jsx',
  89. name: '设备编辑',
  90. component: './Machinery/GPS/edit.jsx',
  91. hideInMenu: true,
  92. },
  93. {
  94. path: '/Machinery/MachineryType',
  95. name: '分类管理',
  96. access: 'machinetype',
  97. component: './Machinery/MachineryType',
  98. },
  99. {
  100. path: '/Machinery/Machinery',
  101. name: '农机列表',
  102. access: 'machinery',
  103. component: './Machinery/Machinery',
  104. },
  105. {
  106. path: '/Machinery/Machinery/edit.jsx',
  107. name: '农机编辑',
  108. component: './Machinery/Machinery/edit.jsx',
  109. hideInMenu: true,
  110. },
  111. {
  112. path: '/Machinery/GIS',
  113. name: '农机GIS',
  114. access: 'gis',
  115. component: './Machinery/GIS',
  116. },
  117. ],
  118. },
  119. {
  120. path: '/OrderManage',
  121. name: '订单调度',
  122. access: 'order',
  123. icon: 'PhoneOutlined',
  124. component: '../layouts/BasicLayout',
  125. routes: [
  126. {
  127. path: '/OrderManage/index.jsx',
  128. name: '订单调度',
  129. access: 'orderjob',
  130. component: './OrderManage',
  131. },
  132. {
  133. path: '/OrderManage/JobWarning/index.jsx',
  134. name: '预警监管',
  135. access: 'orderwarning',
  136. component: './OrderManage/JobWarning',
  137. },
  138. ],
  139. },
  140. {
  141. path: '/JobStatistics',
  142. name: '作业统计',
  143. access: 'statis',
  144. icon: 'ScheduleOutlined',
  145. component: '../layouts/BasicLayout',
  146. routes: [
  147. {
  148. path: '/JobStatistics/Order',
  149. name: '订单统计',
  150. access: 'st-order',
  151. component: './JobStatistics/Order',
  152. },
  153. {
  154. path: '/JobStatistics/Job',
  155. name: '作业统计',
  156. access: 'st-work',
  157. component: './JobStatistics/Job',
  158. },
  159. {
  160. path: '/JobStatistics/RevenueExpenditure',
  161. name: '收支统计',
  162. access: 'st-finance',
  163. component: './JobStatistics/RevenueExpenditure',
  164. },
  165. ],
  166. },
  167. {
  168. path: '/Finance',
  169. name: '财务管理',
  170. access: 'finance',
  171. icon: 'DollarOutlined',
  172. component: '../layouts/BasicLayout',
  173. routes: [
  174. {
  175. path: '/Finance/AccountLog',
  176. name: '平台流水',
  177. access: 'fi-system',
  178. component: './Finance/AccountLog',
  179. },
  180. {
  181. path: '/Finance/Withdrawal',
  182. name: '提现管理',
  183. access: 'fi-withdraw',
  184. component: './Finance/Withdrawal',
  185. },
  186. ],
  187. },
  188. {
  189. path: '/PlatformMessageManagement',
  190. name: '消息管理',
  191. icon: 'MailOutlined',
  192. access: 'message',
  193. component: '../layouts/BasicLayout',
  194. routes: [
  195. {
  196. path: '/PlatformMessageManagement/MessageManageList',
  197. name: '平台消息',
  198. access: 'sys-message',
  199. icon: 'smile',
  200. component: './PlatformMessageManagement/MessageManageList',
  201. },
  202. {
  203. path: '/PlatformMessageManagement/MessageEdit',
  204. name: '消息查看',
  205. component: './PlatformMessageManagement/MessageEdit',
  206. hideInMenu: true,
  207. },
  208. ],
  209. },
  210. {
  211. path: '/SystemManagement',
  212. name: '系统管理',
  213. icon: 'SettingOutlined',
  214. access: 'system',
  215. component: '../layouts/BasicLayout',
  216. routes: [
  217. {
  218. path: '/SystemManagement/Region',
  219. name: '区域设置',
  220. access: 'region',
  221. component: './SystemManagement/Region',
  222. // hideInMenu: true
  223. },
  224. {
  225. path: '/SystemManagement/Cooperative',
  226. name: '机构列表',
  227. access: 'org',
  228. component: './SystemManagement/Cooperative',
  229. },
  230. {
  231. path: '/SystemManagement/UserRights',
  232. name: '角色管理',
  233. access: 'role',
  234. component: './SystemManagement/UserRights',
  235. },
  236. {
  237. path: '/SystemManagement/Administrator',
  238. name: '人员管理',
  239. access: 'user',
  240. component: './SystemManagement/Administrator',
  241. },
  242. {
  243. path: '/SystemManagement/BasicParameters',
  244. name: '基本参数',
  245. access: 'setting',
  246. component: './SystemManagement/BasicParameters',
  247. },
  248. ],
  249. },
  250. {
  251. path: '/',
  252. redirect: '/welcome',
  253. },
  254. {
  255. component: './404',
  256. },
  257. ];