+
-
-
+
+
-
+
-
+
-
+
+
当前位置:{{ monitoringPoint.state.lineName }}
-
+
diff --git a/src/views/pms/voltageSags/monitoringPoint/online/navigation/index.vue b/src/views/pms/voltageSags/monitoringPoint/online/navigation/index.vue
index d4d1f424..0f01dd24 100644
--- a/src/views/pms/voltageSags/monitoringPoint/online/navigation/index.vue
+++ b/src/views/pms/voltageSags/monitoringPoint/online/navigation/index.vue
@@ -1,29 +1,40 @@
-
+
-
+
+
diff --git a/src/views/pms/voltageSags/monitoringPoint/online/store.ts b/src/views/pms/voltageSags/monitoringPoint/online/store.ts
new file mode 100644
index 00000000..89a8807e
--- /dev/null
+++ b/src/views/pms/voltageSags/monitoringPoint/online/store.ts
@@ -0,0 +1,24 @@
+import { reactive } from 'vue'
+import { defineStore } from 'pinia'
+
+interface MonitoringPoint {
+ lineId: string
+ lineName: string
+}
+
+export const useMonitoringPoint = defineStore(
+ 'monitoringPoint',
+ () => {
+ const state: MonitoringPoint = reactive({
+ lineId: '',
+ lineName: '',
+ })
+ const setValue = (key: keyof MonitoringPoint, val: any) => {
+ state[key] = val
+ }
+ return { state, setValue }
+ },
+ {
+ persist: true
+ }
+)
diff --git a/src/views/pms/voltageSags/overview/index.vue b/src/views/pms/voltageSags/overview/index.vue
index 5c61f0c4..9886ea75 100644
--- a/src/views/pms/voltageSags/overview/index.vue
+++ b/src/views/pms/voltageSags/overview/index.vue
@@ -1,149 +1,149 @@
-
-
-
-
+
+
+
+
-
-
-

+
+
+
变电站
-
-

+
+
热备用
-
-

+
+
停运
-
投运
-
+
投运
+
通讯正常
-
-

+
+
有暂降
-
-

+
+
无暂降
-
+
通讯异常
-
-

+
+
有暂降
-
-

+
+
无暂降
-
+
-
+
-
+
-
-
-
- {{ infoWindowPoint.gdName }}
- {{ infoWindowPoint.subName }}
- {{ infoWindowPoint.voltageName }}
-
+
+
+
+ {{ infoWindowPoint.gdName }}
+ {{ infoWindowPoint.subName }}
+ {{ infoWindowPoint.voltageName }}
+
{{ infoWindowPoint.ip }}
- {{ infoWindowPoint.pt2 }}
- {{ infoWindowPoint.ct2 }}
-
+ {{ infoWindowPoint.pt2 }}
+ {{ infoWindowPoint.ct2 }}
+
{{ infoWindowPoint.manufacturer }}
-
+
{{
infoWindowPoint.runFlag == 0
? '投运'
: infoWindowPoint.runFlag == 1
- ? '热备用'
- : '停运'
+ ? '热备用'
+ : '停运'
}}
-
+
{{ infoWindowPoint.comFlag == 0 ? '中断' : '正常' }}
- 查看监测点
-
+ 查看监测点
+
未处理事件({{ infoWindowPoint.noDealCount }})
-
-
-