-
+
diff --git a/src/views/pqs/qualityInspeection/panorama/components/line/info.vue b/src/views/pqs/qualityInspeection/panorama/components/line/info.vue
index eb38c13c..18b1020a 100644
--- a/src/views/pqs/qualityInspeection/panorama/components/line/info.vue
+++ b/src/views/pqs/qualityInspeection/panorama/components/line/info.vue
@@ -108,7 +108,7 @@
-->
-
+
@@ -190,7 +190,7 @@ import {
limitTableDetail
} from '@/api/device-boot/panorama'
import { formatter } from 'element-plus'
-
+const loading=ref(false)
const emit = defineEmits(['back'])
const dropList: any = ref({})
const TargetData: any = ref({})
@@ -374,7 +374,7 @@ const open = async (id: string) => {
}
}
})
-
+ loading.value = true
// 监测点总体评价结论
limitTableDetail({
lineId: id,
@@ -433,6 +433,7 @@ const open = async (id: string) => {
xz: res.data.unbalanceLimit
}
]
+ loading.value = false
})
// 稳态指标合格率
diff --git a/src/views/pqs/runManage/cleaning/components/abnormal.vue b/src/views/pqs/runManage/cleaning/components/abnormal.vue
index d17375d1..7a7f4173 100644
--- a/src/views/pqs/runManage/cleaning/components/abnormal.vue
+++ b/src/views/pqs/runManage/cleaning/components/abnormal.vue
@@ -17,7 +17,7 @@
>
-->
-
+
-
+
+
+
+
更新
导出
@@ -183,7 +190,30 @@
+
+
+
+
+
+
+
+
+ {{ row.abnormalDay }}
+
+
+
+
预警
diff --git a/src/views/pqs/runManage/cleaning/components/anomalyDetails.vue b/src/views/pqs/runManage/cleaning/components/anomalyDetails.vue
index 96a3180d..ebde93d4 100644
--- a/src/views/pqs/runManage/cleaning/components/anomalyDetails.vue
+++ b/src/views/pqs/runManage/cleaning/components/anomalyDetails.vue
@@ -11,78 +11,105 @@
@current-change="currentChangeEvent"
>
-
-
-
-
-
+
+
+
+
+
+ {{ row.dateList?.length }}
+
+
+
-
-
-
-
- {{ (pageNum - 1) * pageSize + rowIndex + 1 }}
-
-
-
-
-
-
- {{ row.phaseType == 'T' ? '/' : row.phaseType }}
-
-
-
-
-
-
-
-
-
-
@@ -97,17 +124,21 @@ import { monitorAbnormalTable, monitorAbnormalTableDetail } from '@/api/device-b
import { mainHeight } from '@/utils/layout'
const dialogVisible = ref(false)
const height1 = mainHeight(-110, 2)
-const height = mainHeight(10, 2)
+const height = mainHeight(90, 2)
const tableRef = ref()
const title = ref('')
const loading = ref(false)
const loading1 = ref(false)
const TableData = ref([])
const TableData1 = ref([])
+const dateList: any = ref([])
const pageNum = ref(1)
const pageSize = ref(20)
const numKey = ref(0)
const targetKey = ref('')
+const errCount = ref('')
+const timeSum = ref('')
+const timeList = ref([])
const showColumn = ref(true)
const open = (data: anyObj, time: string[], num: number) => {
// title.value = (num == 0 ? data.targetName : data.monitorName) + '_异常监测点详情'
@@ -134,16 +165,28 @@ const open = (data: anyObj, time: string[], num: number) => {
dialogVisible.value = true
}
const currentChangeEvent = () => {
- loading1.value = true
let data = tableRef.value.getCurrentRecord()
+
+ dateList.value = data.dateList
+ console.log('🚀 ~ currentChangeEvent ~ dateList.value:', dateList.value)
+ timeList.value = [data.dateList[0]]
+ init()
+}
+const init = () => {
+ if(timeList.value.length == 0) return ElMessage.warning('请选择异常天数!')
+ loading1.value = true
TableData1.value = []
+ let data = tableRef.value.getCurrentRecord()
monitorAbnormalTableDetail({
monitorIds: [data.monitorId],
+ time: timeList.value,
searchBeginTime: data.date,
targetKey: numKey.value == 0 ? targetKey.value : ''
})
.then(res => {
- TableData1.value = res.data
+ errCount.value = res.data.errCount
+ timeSum.value = res.data.timeSum
+ TableData1.value = res.data.time
showColumn.value = res.data[0]?.featureAmplitude == null ? true : false
loading1.value = false
pageNum.value = 1
@@ -170,8 +213,19 @@ defineExpose({ open })
border-bottom: 1px solid #e4e7e9;
}
:deep(.box) {
- .row--current {
-// background-color: var(--el-color-primary-light-8) !important;
+ .row--current {
+ // background-color: var(--el-color-primary-light-8) !important;
}
}
+.form {
+ position: relative;
+ .form_but {
+ position: absolute;
+ right: -22px;
+ }
+}
+.title{
+ font-weight: 600;
+ font-size: 16px;
+}
diff --git a/src/views/pqs/runManage/runEvaluate/index_JB.vue b/src/views/pqs/runManage/runEvaluate/index_JB.vue
index 83ecd18e..5ad38e1e 100644
--- a/src/views/pqs/runManage/runEvaluate/index_JB.vue
+++ b/src/views/pqs/runManage/runEvaluate/index_JB.vue
@@ -36,7 +36,7 @@
diff --git a/src/views/pqs/supervise/electricalEnergy/components1/form/abnormal.vue b/src/views/pqs/supervise/electricalEnergy/components1/form/abnormal.vue
new file mode 100644
index 00000000..6b3954c1
--- /dev/null
+++ b/src/views/pqs/supervise/electricalEnergy/components1/form/abnormal.vue
@@ -0,0 +1,245 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 异常时间:
+ {{ timeSum }}
+ 分钟
+
+
+ 异常次数:
+ {{ errCount }}
+ 次
+
+
+
+
+
+
+
+
+
+ {{ (pageNum - 1) * pageSize + rowIndex + 1 }}
+
+
+
+
+
+
+ {{ row.phaseType == 'T' ? '/' : row.phaseType }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/pqs/supervise/electricalEnergy/components1/online.vue b/src/views/pqs/supervise/electricalEnergy/components1/online.vue
index a3488af3..ddc2f8c1 100644
--- a/src/views/pqs/supervise/electricalEnergy/components1/online.vue
+++ b/src/views/pqs/supervise/electricalEnergy/components1/online.vue
@@ -6,16 +6,33 @@
-
-
-
+
+
+
-
+
+
+
+
+
+
+
+
-
+
+
+
diff --git a/src/views/pqs/voltageSags/monitoringPoint/online/eventStudy/index.vue b/src/views/pqs/voltageSags/monitoringPoint/online/eventStudy/index.vue
index 41822fd8..7cf92e4a 100644
--- a/src/views/pqs/voltageSags/monitoringPoint/online/eventStudy/index.vue
+++ b/src/views/pqs/voltageSags/monitoringPoint/online/eventStudy/index.vue
@@ -17,7 +17,7 @@