routes.js 6.5KB

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