| | |
| | | }, |
| | | ], |
| | | }, |
| | | |
| | | // 车辆模块 |
| | | { |
| | | path: "/basic", |
| | | component: Layout, |
| | | hidden: true, |
| | | redirect: "noredirect", |
| | | meta: { |
| | | breadcrumb: false, // 如果设置为false,则不会在breadcrumb面包屑中显示 |
| | | activeMenu: "/basic/gy", // 当路由设置了该属性,则会高亮相对应的侧边栏。 |
| | | }, |
| | | children: [ |
| | | { |
| | | path: "/basic/gy/gyCarList", |
| | | component: () => import("@/views/basic/gyCar/gyCarList.vue"), |
| | | name: "GyCarList", |
| | | meta: { title: "车辆列表", activeMenu: "/basic/gy" }, |
| | | }, |
| | | { |
| | | path: "/basic/gy/gyCarEdit", |
| | | component: () => import("@/views/basic/gyCar/gyCarEdit.vue"), |
| | | name: "GyCarEdit", |
| | | meta: { title: "车辆编辑", activeMenu: "/basic/gy" }, |
| | | }, |
| | | ], |
| | | }, |
| | | |
| | | // i节点页面 |
| | | { |
| | | path: "/iframe", |
| | |
| | | name: "IframeGyMaterial", |
| | | meta: { title: "物料列表", noCache: true, noLoading: true }, |
| | | }, |
| | | { |
| | | path: "GyCar", |
| | | component: () => import("@/views/basic/gyCar/gyCarList"), // 车辆 |
| | | name: "IframeGyCar", |
| | | meta: { title: "车辆", noCache: true, noLoading: true }, |
| | | }, |
| | | { |
| | | path: "GyCarEdit", |
| | | component: () => import("@/views/basic/gyCar/gyCarEdit"), // 车辆 |
| | | name: "IframeGyCarEdit", |
| | | meta: { title: "车辆编辑", noCache: true, noLoading: true }, |
| | | }, |
| | | { |
| | | path: "GyCarType", |
| | | component: () => import("@/views/basic/gyCartypelist/gyCartypelist"), // 车型 |
| | | name: "IframeGyCarType", |
| | | meta: { title: "车型", noCache: true, noLoading: true }, |
| | | }, |
| | | { |
| | | path: "GySupplier", |
| | | component: () => import("@/views/basic/gy/gySupplier"), // 供应商 |
| | | name: "IframeGySupplier", |
| | | meta: { title: "供应商", noCache: true, noLoading: true }, |
| | | }, |
| | | ], |
| | | }, // 客户 |
| | | { |