123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  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/dispatch.jsx',
  134. name: '调度详情',
  135. access: 'orderjob',
  136. component: './OrderManage/dispatch.jsx',
  137. hideInMenu: true,
  138. },
  139. {
  140. path: '/OrderManage/JobWarning/index.jsx',
  141. name: '预警监管',
  142. access: 'orderwarning',
  143. component: './OrderManage/JobWarning',
  144. },
  145. ],
  146. },
  147. {
  148. path: '/JobStatistics',
  149. name: '作业统计',
  150. access: 'statis',
  151. icon: 'ScheduleOutlined',
  152. component: '../layouts/BasicLayout',
  153. routes: [
  154. {
  155. path: '/JobStatistics/Order',
  156. name: '订单统计',
  157. access: 'st-order',
  158. component: './JobStatistics/Order',
  159. },
  160. {
  161. path: '/JobStatistics/Job',
  162. name: '作业统计',
  163. access: 'st-work',
  164. component: './JobStatistics/Job',
  165. },
  166. // {
  167. // path: '/JobStatistics/RevenueExpenditure',
  168. // name: '收支统计',
  169. // access: 'st-finance',
  170. // component: './JobStatistics/RevenueExpenditure',
  171. // },
  172. ],
  173. },
  174. {
  175. path: '/Finance',
  176. name: '财务管理',
  177. access: 'finance',
  178. icon: 'DollarOutlined',
  179. component: '../layouts/BasicLayout',
  180. routes: [
  181. {
  182. path: '/Finance/AccountLog',
  183. name: '平台流水',
  184. access: 'fi-system',
  185. component: './Finance/AccountLog',
  186. },
  187. {
  188. path: '/Finance/Withdrawal',
  189. name: '提现管理',
  190. access: 'fi-withdraw',
  191. component: './Finance/Withdrawal',
  192. },
  193. ],
  194. },
  195. {
  196. path: '/PlatformMessageManagement',
  197. name: '消息管理',
  198. icon: 'MailOutlined',
  199. access: 'message',
  200. component: '../layouts/BasicLayout',
  201. routes: [
  202. {
  203. path: '/PlatformMessageManagement/MessageManageList',
  204. name: '平台消息',
  205. access: 'sys-message',
  206. icon: 'smile',
  207. component: './PlatformMessageManagement/MessageManageList',
  208. },
  209. {
  210. path: '/PlatformMessageManagement/MessageEdit',
  211. name: '消息查看',
  212. component: './PlatformMessageManagement/MessageEdit',
  213. hideInMenu: true,
  214. },
  215. ],
  216. },
  217. {
  218. path: '/Feedback',
  219. name: '意见反馈',
  220. icon: 'MessageOutlined',
  221. component: './Feedback',
  222. access: 'feedback',
  223. },
  224. {
  225. path: '/SystemManagement',
  226. name: '系统管理',
  227. icon: 'SettingOutlined',
  228. access: 'system',
  229. component: '../layouts/BasicLayout',
  230. routes: [
  231. {
  232. path: '/SystemManagement/Region',
  233. name: '区域设置',
  234. access: 'region',
  235. component: './SystemManagement/Region',
  236. },
  237. {
  238. path: '/SystemManagement/Cooperative',
  239. name: '机构列表',
  240. access: 'org',
  241. component: './SystemManagement/Cooperative',
  242. },
  243. {
  244. path: '/SystemManagement/UserRights',
  245. name: '角色管理',
  246. access: 'role',
  247. component: './SystemManagement/UserRights',
  248. },
  249. {
  250. path: '/SystemManagement/Administrator',
  251. name: '人员管理',
  252. access: 'user',
  253. component: './SystemManagement/Administrator',
  254. },
  255. {
  256. path: '/SystemManagement/BasicParameters',
  257. name: '基本参数',
  258. access: 'setting',
  259. component: './SystemManagement/BasicParameters',
  260. },
  261. ],
  262. },
  263. {
  264. path: '/',
  265. redirect: '/welcome',
  266. },
  267. {
  268. component: './404',
  269. },
  270. ];