|
@@ -1,9 +1,9 @@
|
|
|
<template>
|
|
|
<customHeader :options="options" @change="getSelectRow" :optionValue="optionValue"> 通风监测预警 </customHeader>
|
|
|
<div class="ventilateWarn">
|
|
|
- <div class="icon-toggle" @click="handlerToggle">
|
|
|
- <img v-if="showToggle" src="@/assets/images/vent/monitor-toggle.png" alt=""></img>
|
|
|
- <img v-else src="@/assets/images/vent/report-toggle.png" alt=""></img>
|
|
|
+ <div v-if="showToggle=='all'" class="icon-toggle" @click="handlerToggle">
|
|
|
+ <img v-if="monitor" src="@/assets/images/vent/monitor-toggle.png" alt="">
|
|
|
+ <img v-else src="@/assets/images/vent/report-toggle.png" alt="">
|
|
|
</div>
|
|
|
<div class="ventilate-top">
|
|
|
<a-button
|
|
@@ -69,18 +69,19 @@
|
|
|
</template>
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
- import { ref, reactive, onMounted, onUnmounted } from 'vue';
|
|
|
+ import { ref, reactive, onMounted, onUnmounted,computed } from 'vue';
|
|
|
import { useSystemSelect } from '/@/hooks/vent/useSystemSelect';
|
|
|
+ import { usePermission } from '/@/hooks/web/usePermission';
|
|
|
+ import { useGlobSetting } from '/@/hooks/setting';
|
|
|
import { useRouter } from 'vue-router';
|
|
|
import { sysTypeWarnList, sysWarn, getDevice } from '../common.api';
|
|
|
import { ventilateTopList } from '../common.data';
|
|
|
import CustomHeader from '/@/components/vent/customHeader.vue';
|
|
|
import echartLine from '../common/echartLine.vue';
|
|
|
- import { usePermission } from '/@/hooks/web/usePermission';
|
|
|
import MeasurePoint from '../common/measurePoint.vue';
|
|
|
// import moment from 'moment';
|
|
|
|
|
|
- let showToggle=ref(true)
|
|
|
+ let monitor=ref(true)
|
|
|
let toggleData=reactive<any>({})
|
|
|
const { hasPermission } = usePermission();
|
|
|
const { options, optionValue, getSelectRow, getSysDataSource } = useSystemSelect('sys_surface_caimei'); // 参数为场景类型(设备类型管理中可以查询到)
|
|
@@ -109,13 +110,13 @@
|
|
|
});
|
|
|
let cardListTf = ref<any[]>([]);
|
|
|
const chartListTf = ref<any[]>([]);
|
|
|
-
|
|
|
+ let showToggle=ref('')
|
|
|
//点击切换实时\报表数据
|
|
|
let handlerToggle=()=>{
|
|
|
- showToggle.value=!showToggle.value
|
|
|
- ventilateTopList[0].value =showToggle.value ? toggleData.jin : toggleData.faceIntM3;
|
|
|
- ventilateTopList[1].value = showToggle.value ? toggleData.hui : toggleData.faceRetM3 ;
|
|
|
- if(showToggle.value && toggleData.history.length != 0){
|
|
|
+ monitor.value=!monitor.value
|
|
|
+ ventilateTopList[0].value =monitor.value ? toggleData.jin : toggleData.faceIntM3;
|
|
|
+ ventilateTopList[1].value = monitor.value ? toggleData.hui : toggleData.faceRetM3 ;
|
|
|
+ if(monitor.value && toggleData.history.length != 0){
|
|
|
toggleData.history.forEach((v) => {
|
|
|
echartDataFc1.maxData.data.push(parseFloat(v.jin));
|
|
|
echartDataFc1.minData.data.push(parseFloat(v.hui));
|
|
@@ -185,12 +186,38 @@
|
|
|
echartDataFc1.xData.length = 0;
|
|
|
if (JSON.stringify(res) != '{}') {
|
|
|
toggleData=Object.assign({},res)
|
|
|
- ventilateTopList[0].value =showToggle.value ? res.jin : res.faceIntM3;
|
|
|
- ventilateTopList[1].value = showToggle.value ? res.hui : res.faceRetM3 ;
|
|
|
ventilateTopList[2].value = res.xufengliang || '--';
|
|
|
ventilateTopList[3].text = res.warnFlag ? res.warnDes : '正常';
|
|
|
-
|
|
|
- if(showToggle.value && res.history.length != 0){
|
|
|
+ if(showToggle.value=='monitor'){
|
|
|
+ ventilateTopList[0].value =res.jin
|
|
|
+ ventilateTopList[1].value =res.hui
|
|
|
+ if(res.history.length != 0){
|
|
|
+ res.history.forEach((v) => {
|
|
|
+ echartDataFc1.maxData.data.push(parseFloat(v.jin));
|
|
|
+ echartDataFc1.minData.data.push(parseFloat(v.hui));
|
|
|
+ if (ventilateTopList[2].value && ventilateTopList[2].value != '--') {
|
|
|
+ echartDataFc1.aveValue.data.push(ventilateTopList[2].value);
|
|
|
+ } else {
|
|
|
+ echartDataFc1.aveValue.data.push(0);
|
|
|
+ }
|
|
|
+ echartDataFc1.xData.push(v.time);
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }else if(showToggle.value=='report'){
|
|
|
+ ventilateTopList[0].value =res.faceIntM3;
|
|
|
+ ventilateTopList[1].value =res.faceRetM3 ;
|
|
|
+ if(res.history_report.length != 0){
|
|
|
+ res.history_report.forEach((v) => {
|
|
|
+ echartDataFc1.maxData.data.push(parseFloat(v.faceIntM3));
|
|
|
+ echartDataFc1.minData.data.push(parseFloat(v.faceRetM3));
|
|
|
+ echartDataFc1.aveValue.data.push(0);
|
|
|
+ echartDataFc1.xData.push(v.time);
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }else {
|
|
|
+ ventilateTopList[0].value =monitor.value ? res.jin : res.faceIntM3;
|
|
|
+ ventilateTopList[1].value = monitor.value ? res.hui : res.faceRetM3 ;
|
|
|
+ if(monitor.value && res.history.length != 0){
|
|
|
res.history.forEach((v) => {
|
|
|
echartDataFc1.maxData.data.push(parseFloat(v.jin));
|
|
|
echartDataFc1.minData.data.push(parseFloat(v.hui));
|
|
@@ -209,7 +236,7 @@
|
|
|
echartDataFc1.xData.push(v.time);
|
|
|
});
|
|
|
}
|
|
|
-
|
|
|
+ }
|
|
|
|
|
|
let max1 = echartDataFc1.maxData.data.reduce((acr, cur) => {
|
|
|
return acr > cur ? acr : cur;
|
|
@@ -281,6 +308,8 @@
|
|
|
}
|
|
|
}
|
|
|
onMounted(() => {
|
|
|
+ const { sysOrgCode, sysDataType } = useGlobSetting();
|
|
|
+ showToggle.value=sysDataType
|
|
|
getMenuList();
|
|
|
});
|
|
|
onUnmounted(() => {
|