routes.js 7.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306
  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: '/customer',
  76. name: '客户管理',
  77. icon: 'IdcardOutlined',
  78. access: 'customer',
  79. component: '../layouts/BasicLayout',
  80. routes: [
  81. {
  82. path: '/customer/index.jsx',
  83. name: '客户列表',
  84. access: 'customerList',
  85. icon: 'smile',
  86. component: './customer',
  87. },
  88. ],
  89. },
  90. {
  91. path: '/Machinery',
  92. name: '农机管理',
  93. icon: 'CarOutlined',
  94. access: 'agricultural',
  95. component: '../layouts/BasicLayout',
  96. routes: [
  97. {
  98. path: '/Machinery/Org',
  99. name: '合作社列表',
  100. access: 'org',
  101. component: './Machinery/Org',
  102. },
  103. {
  104. path: '/Machinery/Person',
  105. name: '人员管理',
  106. access: 'user',
  107. component: './Machinery/Person',
  108. },
  109. {
  110. path: '/Machinery/MachineryType',
  111. name: '分类管理',
  112. access: 'machinetype',
  113. component: './Machinery/MachineryType',
  114. },
  115. {
  116. path: '/Machinery/Machinery',
  117. name: '农机列表',
  118. access: 'machinery',
  119. component: './Machinery/Machinery',
  120. },
  121. {
  122. path: '/Machinery/Machinery/Edit',
  123. name: '农机编辑',
  124. component: './Machinery/Machinery/Edit',
  125. hideInMenu: true,
  126. },
  127. {
  128. path: '/Machinery/GPS',
  129. name: '设备管理',
  130. access: 'device',
  131. component: './Machinery/GPS',
  132. },
  133. {
  134. path: '/Machinery/GPS/edit.jsx',
  135. name: '设备编辑',
  136. component: './Machinery/GPS/edit.jsx',
  137. hideInMenu: true,
  138. },
  139. {
  140. path: '/Machinery/GIS',
  141. name: '农机GIS',
  142. access: 'gis',
  143. component: './Machinery/GIS',
  144. },
  145. ],
  146. },
  147. {
  148. path: '/OrderManage',
  149. name: '订单调度',
  150. access: 'order',
  151. icon: 'PhoneOutlined',
  152. component: '../layouts/BasicLayout',
  153. routes: [
  154. {
  155. path: '/OrderManage/index.jsx',
  156. name: '订单调度',
  157. access: 'orderjob',
  158. component: './OrderManage',
  159. },
  160. {
  161. path: '/OrderManage/dispatch.jsx',
  162. name: '调度详情',
  163. access: 'orderjob',
  164. component: './OrderManage/dispatch.jsx',
  165. hideInMenu: true,
  166. },
  167. {
  168. path: '/OrderManage/OrderList/index.jsx',
  169. name: '订单列表',
  170. access: 'orderList',
  171. component: './OrderManage/OrderList',
  172. },
  173. {
  174. path: '/OrderManage/JobWarning/index.jsx',
  175. name: '预警监管',
  176. access: 'orderwarning',
  177. component: './OrderManage/JobWarning',
  178. },
  179. {
  180. path: '/OrderManage/JobWarning/detail.jsx',
  181. name: '订单详情',
  182. access: 'orderwarning',
  183. component: './OrderManage/JobWarning/detail.jsx',
  184. hideInMenu: true,
  185. },
  186. ],
  187. },
  188. {
  189. path: '/JobStatistics',
  190. name: '作业统计',
  191. access: 'statis',
  192. icon: 'ScheduleOutlined',
  193. component: '../layouts/BasicLayout',
  194. routes: [
  195. {
  196. path: '/JobStatistics/Order',
  197. name: '订单统计',
  198. access: 'st-order',
  199. component: './JobStatistics/Order',
  200. },
  201. {
  202. path: '/JobStatistics/Job',
  203. name: '作业统计',
  204. access: 'st-work',
  205. component: './JobStatistics/Job',
  206. },
  207. // {
  208. // path: '/JobStatistics/RevenueExpenditure',
  209. // name: '收支统计',
  210. // access: 'st-finance',
  211. // component: './JobStatistics/RevenueExpenditure',
  212. // },
  213. ],
  214. },
  215. {
  216. path: '/Finance',
  217. name: '财务管理',
  218. access: 'finance',
  219. icon: 'DollarOutlined',
  220. component: '../layouts/BasicLayout',
  221. routes: [
  222. {
  223. path: '/Finance/AccountLog',
  224. name: '平台流水',
  225. access: 'fi-system',
  226. component: './Finance/AccountLog',
  227. },
  228. {
  229. path: '/Finance/Withdrawal',
  230. name: '提现管理',
  231. access: 'fi-withdraw',
  232. component: './Finance/Withdrawal',
  233. },
  234. {
  235. path: '/Finance/Withdrawal/audit.jsx',
  236. name: '提现审批',
  237. component: './Finance/Withdrawal/audit.jsx',
  238. hideInMenu: true,
  239. },
  240. ],
  241. },
  242. {
  243. path: '/PlatformMessageManagement',
  244. name: '消息管理',
  245. icon: 'MailOutlined',
  246. access: 'message',
  247. component: '../layouts/BasicLayout',
  248. routes: [
  249. {
  250. path: '/PlatformMessageManagement/MessageManageList',
  251. name: '平台消息',
  252. access: 'sys-message',
  253. icon: 'smile',
  254. component: './PlatformMessageManagement/MessageManageList',
  255. },
  256. {
  257. path: '/PlatformMessageManagement/MessageEdit',
  258. name: '消息查看',
  259. component: './PlatformMessageManagement/MessageEdit',
  260. hideInMenu: true,
  261. },
  262. ],
  263. },
  264. {
  265. path: '/Feedback',
  266. name: '意见反馈',
  267. icon: 'MessageOutlined',
  268. component: './Feedback',
  269. access: 'feedback',
  270. },
  271. {
  272. path: '/SystemManagement',
  273. name: '系统管理',
  274. icon: 'SettingOutlined',
  275. access: 'system',
  276. component: '../layouts/BasicLayout',
  277. routes: [
  278. {
  279. path: '/SystemManagement/Region',
  280. name: '区域设置',
  281. access: 'region',
  282. component: './SystemManagement/Region',
  283. },
  284. {
  285. path: '/SystemManagement/UserRights',
  286. name: '角色管理',
  287. access: 'role',
  288. component: './SystemManagement/UserRights',
  289. },
  290. {
  291. path: '/SystemManagement/BasicParameters',
  292. name: '基本参数',
  293. access: 'setting',
  294. component: './SystemManagement/BasicParameters',
  295. },
  296. ],
  297. },
  298. {
  299. path: '/',
  300. redirect: '/welcome',
  301. },
  302. {
  303. component: './404',
  304. },
  305. ];