/* * @Author: your name * @Date: 2021-01-13 17:39:02 * @LastEditTime: 2021-01-18 15:48:29 * @LastEditors: Please set LastEditors * @Description: In User Settings Edit * @FilePath: \vue3-element-admin\src\router\mainRoutes.js */ export default [ { path: "/warningHome", name: "warningHome", component: () => import("@/views/warningHome/index.vue"), // component: () => import("@/views/authentic/index.vue"), }, { path: "/home", name: "Home", component: () => import("@/views/home/index.vue"), // component: () => import("@/views/authentic/index.vue"), }, { path: "/garden-file", name: "GardenFile", component: () => import("@/views/file/index.vue"), }, //地块确权页面 { path: "/authentic", name: "Authentic", component: () => import("@/views/authentic/index.vue"), }, //新增农事 { path: "/add_farm", name: "AddFarm", component: () => import("@/views/addFarm/index.vue"), }, // 农事 待执行页面 { path: "/work_detail", name: "WorkDetail", component: () => import("@/views/workDetail/index.vue"), }, // 农事 已完成页面 { path: "/work_completed", name: "WorkCompleted", component: () => import("@/views/workDetail/completed.vue"), }, // 品种确权页面 { path: "/variety_map", name: "VarietyMap", component: () => import("@/views/varietyMap/index.vue"), }, ];