mainRoutes.js 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. * @Author: your name
  3. * @Date: 2021-01-13 17:39:02
  4. * @LastEditTime: 2021-01-18 15:48:29
  5. * @LastEditors: Please set LastEditors
  6. * @Description: In User Settings Edit
  7. * @FilePath: \vue3-element-admin\src\router\mainRoutes.js
  8. */
  9. export default [
  10. {
  11. path: "/warningHome",
  12. name: "warningHome",
  13. component: () => import(/* @vite-ignore */ "@/views/warningHome/index.vue"),
  14. },
  15. {
  16. path: "/landRecognition",
  17. name: "LandRecognition",
  18. component: () => import(/* @vite-ignore */ "@/views/landRecognition/index.vue"),
  19. },
  20. //新增农事
  21. {
  22. path: "/add_farm",
  23. name: "AddFarm",
  24. component: () => import(/* @vite-ignore */ "@/views/addFarm/index.vue"),
  25. },
  26. // 农事 待执行页面
  27. {
  28. path: "/work_detail",
  29. name: "WorkDetail",
  30. component: () => import(/* @vite-ignore */ "@/views/workDetail/index.vue"),
  31. },
  32. // 农事 已完成页面
  33. {
  34. path: "/work_completed",
  35. name: "WorkCompleted",
  36. component: () => import(/* @vite-ignore */ "@/views/workDetail/completed.vue"),
  37. },
  38. ];