mainRoutes.js 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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("@/views/warningHome/index.vue"),
  14. // component: () => import("@/views/authentic/index.vue"),
  15. },
  16. {
  17. path: "/home",
  18. name: "Home",
  19. component: () => import("@/views/home/index.vue"),
  20. // component: () => import("@/views/authentic/index.vue"),
  21. },
  22. {
  23. path: "/garden-file",
  24. name: "GardenFile",
  25. component: () => import("@/views/file/index.vue"),
  26. },
  27. {
  28. path: "/authentic",
  29. name: "Authentic",
  30. component: () => import("@/views/authentic/index.vue"),
  31. },
  32. {
  33. path: "/regionalInformation",
  34. name: "RegionalInformation",
  35. component: () => import("@/views/regionalInformation/index.vue"),
  36. },
  37. {
  38. path: "/checkComparison",
  39. name: "CheckComparison",
  40. component: () => import("@/views/checkComparison/index.vue"),
  41. },
  42. {
  43. path: "/edit_ns_record",
  44. name: "EditNsRecord",
  45. component: () => import("@/views/edit_ns_recrod/index.vue"),
  46. },
  47. {
  48. path: "/ownership",
  49. name: "Ownership",
  50. component: () => import("@/views/ownership/index.vue"),
  51. },
  52. {
  53. path: "/zhgl",
  54. name: "Zhgl",
  55. component: () => import("@/views/zhgl/index.vue"),
  56. },
  57. {
  58. path: "/analysisDetails",
  59. name: "AnalysisDetails",
  60. component: () => import("@/views/detailsPage/analysis/index.vue"),
  61. },
  62. {
  63. path: "/weatherDetails",
  64. name: "WeatherDetails",
  65. component: () => import("@/views/detailsPage/weather/index.vue"),
  66. },
  67. // 农事
  68. {
  69. path: "/work_detail",
  70. name: "WorkDetail",
  71. component: () => import("@/views/workDetail/index.vue"),
  72. },
  73. ];