/* * @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: "/regionalInformation", name: "RegionalInformation", component: () => import("@/views/regionalInformation/index.vue"), }, { path: "/checkComparison", name: "CheckComparison", component: () => import("@/views/checkComparison/index.vue"), }, { path: "/edit_ns_record", name: "EditNsRecord", component: () => import("@/views/edit_ns_recrod/index.vue"), }, { path: "/ownership", name: "Ownership", component: () => import("@/views/ownership/index.vue"), }, { path: "/zhgl", name: "Zhgl", component: () => import("@/views/zhgl/index.vue"), }, { path: "/analysisDetails", name: "AnalysisDetails", component: () => import("@/views/detailsPage/analysis/index.vue"), }, { path: "/weatherDetails", name: "WeatherDetails", component: () => import("@/views/detailsPage/weather/index.vue"), }, // 农事 { path: "/work_detail", name: "WorkDetail", component: () => import("@/views/workDetail/index.vue"), }, ];