| 1234567891011121314151617181920212223242526272829303132333435363738 |
- /*
- * @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(/* @vite-ignore */ "@/views/warningHome/index.vue"),
- },
- {
- path: "/landRecognition",
- name: "LandRecognition",
- component: () => import(/* @vite-ignore */ "@/views/landRecognition/index.vue"),
- },
- //新增农事
- {
- path: "/add_farm",
- name: "AddFarm",
- component: () => import(/* @vite-ignore */ "@/views/addFarm/index.vue"),
- },
- // 农事 待执行页面
- {
- path: "/work_detail",
- name: "WorkDetail",
- component: () => import(/* @vite-ignore */ "@/views/workDetail/index.vue"),
- },
- // 农事 已完成页面
- {
- path: "/work_completed",
- name: "WorkCompleted",
- component: () => import(/* @vite-ignore */ "@/views/workDetail/completed.vue"),
- },
- ];
|