diff --git a/src/components/SysMenu.vue b/src/components/SysMenu.vue index 39e6192..166dc6b 100644 --- a/src/components/SysMenu.vue +++ b/src/components/SysMenu.vue @@ -66,11 +66,6 @@ const list = reactive([ label: '线路信息管理', icon: 'format_list_numbered', }, - { - path: '/dataManage/decisionInfo', - label: '决策信息管理', - icon: 'format_align_center', - }, { path: '/dataManage/faultQuery', label: '故障查询管理', @@ -145,6 +140,11 @@ const list = reactive([ label: '辅助决策方案管理查询', icon: 'format_align_center', }, + { + path: '/dataManage/emergencyResponse', + label: '应急处置流程表', + icon: 'call_merge', + }, ], }, ]); diff --git a/src/layouts/MainLayout.vue b/src/layouts/MainLayout.vue index d2159a7..053f5d3 100644 --- a/src/layouts/MainLayout.vue +++ b/src/layouts/MainLayout.vue @@ -15,13 +15,13 @@ 西安NCC调度辅助决策系统 - + /> --> + + + + + +
+ + + + + + +
+
+ 故障类型 :{{ + clickRowInfo.faultType + }} +
+
+ {{ showTitle.faultNameShower }}:{{ clickRowInfo.faultNameShower }} +
+ +
{{ showTitle.faultDriverShower }}
+ +
+
{{ clickRowInfo.faultDriverShower }}
+
+
+ +
{{ showTitle.resultMsg }}
+ +
+
{{ clickRowInfo.resultMsg }}
+
+
+
+
+
+
+ + + + + diff --git a/src/router/routes.ts b/src/router/routes.ts index 4ddbeba..4743361 100644 --- a/src/router/routes.ts +++ b/src/router/routes.ts @@ -51,6 +51,11 @@ const routes: RouteRecordRaw[] = [ name: 'faultQuery', component: () => import('pages/FaultQueryManage.vue'), }, + { + path: 'emergencyResponse', + name: 'emergencyResponse', + component: () => import('pages/EmergencyResponseManage.vue'), + }, { path: 'thresholdValue', name: 'thresholdValue',