| | |
| | | // 基础产品-场景清单 |
| | | path: 'scene', |
| | | name: 'ProdSceneInfo', |
| | | meta: { keepAlive: false, key: 'ProdManage' }, |
| | | meta: { keepAlive: true, key: 'ProdManage' }, |
| | | component: () => |
| | | import( |
| | | '@/views/fysp/data-product/base-data-product/ProdSceneInfo.vue' |
| | |
| | | // 基础产品-规范性评估 |
| | | path: 'evaluate', |
| | | name: 'ProdEvaluationInfo', |
| | | meta: { keepAlive: false, key: 'ProdManage' }, |
| | | meta: { keepAlive: true, key: 'ProdManage' }, |
| | | component: () => |
| | | import( |
| | | '@/views/fysp/data-product/base-data-product/ProdEvaluationInfo.vue' |
| | |
| | | // 基础产品-巡查信息 |
| | | path: 'inspection', |
| | | name: 'ProdInspectionInfo', |
| | | meta: { keepAlive: false, key: 'ProdManage' }, |
| | | meta: { keepAlive: true, key: 'ProdManage' }, |
| | | component: () => |
| | | import( |
| | | '@/views/fysp/data-product/base-data-product/ProdInspectionInfo.vue' |
| | |
| | | // 基础产品-监测数据 |
| | | path: 'monitordata', |
| | | name: 'ProdMonitorDataInfo', |
| | | meta: { keepAlive: false, key: 'ProdManage' }, |
| | | meta: { keepAlive: true, key: 'ProdManage' }, |
| | | component: () => |
| | | import( |
| | | '@/views/fysp/data-product/base-data-product/ProdMonitorDataInfo.vue' |
| | |
| | | ]; |
| | | |
| | | const router = createRouter({ |
| | | history: createWebHistory(import.meta.env.BASE_URL), |
| | | // history: createWebHashHistory(), |
| | | // history: createWebHistory(import.meta.env.BASE_URL), |
| | | history: createWebHashHistory(), |
| | | routes: routes |
| | | }); |
| | | |