From f93a3a605d6d949515bedbcdc633c5f454014f02 Mon Sep 17 00:00:00 2001 From: Admin <978517621@qq.com> Date: 星期二, 26 七月 2022 17:07:06 +0800 Subject: [PATCH] 添加修改页面 --- src/router/route.ts | 74 ++++++++++++++++++++++++++++++++++++ 1 files changed, 73 insertions(+), 1 deletions(-) diff --git a/src/router/route.ts b/src/router/route.ts index bc7dd8a..aaa0429 100644 --- a/src/router/route.ts +++ b/src/router/route.ts @@ -285,9 +285,81 @@ { path: '/inspectionTask', name: 'inspectionTask', - component: () => import('/@/views/IntelligentXjSys/inspectionTaskManagement/inspectionTask/index.vue'), + component: () => import('/@/views/IntelligentXjSys/inspectionTaskManagement/index.vue'), meta: { title: '巡检任务' }, + }, + { + path: '/rfId', + name: 'rfId', + component: () => import('/@/views/IntelligentXjSys/basicDataManagement/rfId/index.vue'), + meta: { + title: 'RFID管理' + }, + }, + { + path: '/inspection', + name: 'inspection', + component: () => import('/@/views/IntelligentXjSys/basicDataManagement/inspection/index.vue'), + meta: { + title: '巡检点管理' + }, + }, + { + path: '/indicator', + name: 'indicator', + component: () => import('/@/views/IntelligentXjSys/basicDataManagement/indicator/index.vue'), + meta: { + title: '巡检指标管理' + }, + }, + { + path: '/facilityArea', + name: 'facilityArea', + component: () => import('/@/views/IntelligentXjSys/basicDataManagement/facilityArea/index.vue'), + meta: { + title: '设施区域管理' + }, + }, + { + path: '/inspectionRecordManagement', + name: 'inspectionRecordManagement', + component: () => import('/@/views/IntelligentXjSys/inspectionRecordManagement/index.vue'), + meta: { + title: '巡检记录管理' + }, + }, + { + path: '/educationAndTraining', + name: 'educationAndTraining', + component: () => import('/@/views/riskWarningSys/educationAndTraining/index.vue'), + meta: { + title: '教育培训' + }, + }, + { + path: '/emergencyDrills', + name: 'emergencyDrills', + component: () => import('/@/views/riskWarningSys/emergencyDrills/index.vue'), + meta: { + title: '应急演练' + }, + }, + { + path: '/accidentLevel', + name: 'accidentLevel', + component: () => import('/@/views/riskWarningSys/accidentLevel/index.vue'), + meta: { + title: '事故等级' + }, + }, + { + path: '/riskLevel', + name: 'riskLevel', + component: () => import('/@/views/riskWarningSys/riskLevel/index.vue'), + meta: { + title: '风险等级' + }, } ]; -- Gitblit v1.9.2