|
@@ -1,26 +1,21 @@
|
|
|
<template>
|
|
|
<customHeader :options="options" @change="getSelectRow" :optionValue="optionValue"> 瓦斯监测预警 </customHeader>
|
|
|
<div class="gasWarn">
|
|
|
- <a-button
|
|
|
- v-if="!hasPermission('gasWarn:return')"
|
|
|
- preIcon="ant-design:rollback-outlined"
|
|
|
- type="text"
|
|
|
- size="small"
|
|
|
- style="position: absolute; left: 15px; top: 15px; color: #fff"
|
|
|
- @click="getBack"
|
|
|
- >
|
|
|
+ <a-button v-if="!hasPermission('gasWarn:return')" preIcon="ant-design:rollback-outlined" type="text" size="small"
|
|
|
+ style="position: absolute; left: 15px; top: 15px; color: #fff" @click="getBack">
|
|
|
返回
|
|
|
</a-button>
|
|
|
<div class="alarm-menu">
|
|
|
<div class="type-btn">
|
|
|
-
|
|
|
+
|
|
|
<div :class="activeIndex == index ? 'btn1' : 'btn'" v-for="(item, index) in typeMenuListGas" :key="index"
|
|
|
@click="btnClick(index)">
|
|
|
{{ item.name }}
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="card-btn">
|
|
|
- <div :class="activeIndex1 == ind ? 'btn1' : 'btn'" v-for="(item, ind) in menuList" :key="ind" @click="cardClick(ind, item)">
|
|
|
+ <div :class="activeIndex1 == ind ? 'btn1' : 'btn'" v-for="(item, ind) in menuList" :key="ind"
|
|
|
+ @click="cardClick(ind, item)">
|
|
|
<div class="text">{{ item.name }}</div>
|
|
|
<div class="warn">{{ item.warn }}</div>
|
|
|
</div>
|
|
@@ -79,15 +74,16 @@
|
|
|
<gasParamter />
|
|
|
</div>
|
|
|
<div style="width: 100%; height: 100%" v-else-if="isShow == 'gzzd'">
|
|
|
- <faultDiagnose :timeData="gzTime" :topData="topData" :xAxisPropType="xAxisPropType" :hisEchartData="hisEchartData" :echartData="echartData" :pointHisWarnDatas="pointHisWarnDatas" @getSearchHis="getlistdaysData1"></faultDiagnose>
|
|
|
+ <faultDiagnose :timeData="gzTime" :topData="topData" :xAxisPropType="xAxisPropType"
|
|
|
+ :hisEchartData="hisEchartData" :echartData="echartData" @getSearchHis="getlistdaysData1"></faultDiagnose>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
-import { ref, reactive, onMounted, onUnmounted,computed } from 'vue';
|
|
|
-import { sysTypeWarnList, sysWarn,getDevice,listdays,bjlist,getHistoryData } from '../common.api';
|
|
|
+import { ref, reactive, onMounted, onUnmounted, computed } from 'vue';
|
|
|
+import { sysTypeWarnList, sysWarn, getDevice, listdays, bjlist, getHistoryData } from '../common.api';
|
|
|
import { useSystemSelect } from '/@/hooks/vent/useSystemSelect';
|
|
|
import { useRouter } from 'vue-router';
|
|
|
import CustomHeader from '/@/components/vent/customHeader.vue';
|
|
@@ -118,35 +114,31 @@ let router = useRouter();
|
|
|
let activeIndex = ref(0);
|
|
|
let isShow = ref('yjjc');
|
|
|
//故障诊断开始时间
|
|
|
-let gzTime=ref('')
|
|
|
+let gzTime = ref('')
|
|
|
//故障诊断顶部区域数据
|
|
|
-let topData=ref<any[]>([])
|
|
|
+let topData = ref<any[]>([])
|
|
|
//根据诊断类型判断调用哪个历史数据接口
|
|
|
-let zdType=ref('')
|
|
|
+let zdType = ref('')
|
|
|
let historySearch = reactive({
|
|
|
- ttime_begin:'',
|
|
|
- ttime_end: '',
|
|
|
+ ttime_begin: '',
|
|
|
+ ttime_end: '',
|
|
|
})
|
|
|
//实时历史图表
|
|
|
-let xAxisPropType=ref('')
|
|
|
-let hisEchartData=ref<any[]>([])
|
|
|
+let xAxisPropType = ref('')
|
|
|
+let hisEchartData = ref<any[]>([])
|
|
|
//报警历史图表
|
|
|
let echartData = reactive<any>({
|
|
|
- maxData: {
|
|
|
- lengedData: '',
|
|
|
- data: [],
|
|
|
- },
|
|
|
- minData: {
|
|
|
- lengedData: '',
|
|
|
- data: [],
|
|
|
- },
|
|
|
- xData: [],
|
|
|
- });
|
|
|
- //报警历史交点坐标
|
|
|
-let pointHisWarnDatas=reactive({
|
|
|
- x:0,
|
|
|
- y:0
|
|
|
-})
|
|
|
+ maxData: {
|
|
|
+ lengedData: '',
|
|
|
+ data: [],
|
|
|
+ },
|
|
|
+ minData: {
|
|
|
+ lengedData: '',
|
|
|
+ data: [],
|
|
|
+ },
|
|
|
+ xData: [],
|
|
|
+});
|
|
|
+
|
|
|
// https获取监测数据
|
|
|
let timer: null | NodeJS.Timeout = null;
|
|
|
function getMonitor(flag?) {
|
|
@@ -158,7 +150,7 @@ function getMonitor(flag?) {
|
|
|
} else {
|
|
|
await getMenuList()
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
if (timer) {
|
|
|
timer = null;
|
|
|
}
|
|
@@ -248,138 +240,136 @@ async function getMenuList() {
|
|
|
}
|
|
|
}
|
|
|
//寸草塔二矿左侧菜单
|
|
|
-async function getBjlist(){
|
|
|
- let res=await bjlist({devicetype: 'gasmonitor*',pageNo:1,pageSize:100,isok:'0',})
|
|
|
- console.log(res,'寸草塔二矿左侧菜单')
|
|
|
- if (res && res.records.length!=0) {
|
|
|
+async function getBjlist() {
|
|
|
+ let res = await bjlist({ devicetype: 'gasmonitor*', pageNo: 1, pageSize: 100, isok: '0', })
|
|
|
+ console.log(res, '寸草塔二矿左侧菜单')
|
|
|
+ if (res && res.records.length != 0) {
|
|
|
menuList.length = 0;
|
|
|
res.records.forEach((el) => {
|
|
|
menuList.push({
|
|
|
name: el.devicename,
|
|
|
warn: '故障',
|
|
|
deviceID: el.deviceid,
|
|
|
- time:el.createTime
|
|
|
+ time: el.createTime
|
|
|
// strtype: el.strtype,
|
|
|
// detail: el.detail
|
|
|
});
|
|
|
});
|
|
|
- gzTime.value=menuList[activeIndex1.value].time
|
|
|
+ gzTime.value = menuList[activeIndex1.value].time
|
|
|
let index = gzTime.value.indexOf(' ')
|
|
|
- let specificTime = dayjs(`${ gzTime.value.substring(0, index)}T${ gzTime.value.substring(index + 1)}`)
|
|
|
- if(!historySearch.ttime_begin && !historySearch.ttime_end){
|
|
|
- historySearch.ttime_begin = specificTime.subtract(30, 'minute').format('YYYY-MM-DD HH:mm:ss')
|
|
|
- historySearch.ttime_end = specificTime.add(30, 'minute').format('YYYY-MM-DD HH:mm:ss')
|
|
|
- }
|
|
|
+ let specificTime = dayjs(`${gzTime.value.substring(0, index)}T${gzTime.value.substring(index + 1)}`)
|
|
|
+ if (!historySearch.ttime_begin && !historySearch.ttime_end) {
|
|
|
+ historySearch.ttime_begin = specificTime.subtract(30, 'minute').format('YYYY-MM-DD HH:mm:ss')
|
|
|
+ historySearch.ttime_end = specificTime.add(30, 'minute').format('YYYY-MM-DD HH:mm:ss')
|
|
|
+ }
|
|
|
//获取实时数据-报警历史
|
|
|
getDeviceList(menuList[activeIndex1.value].deviceID)
|
|
|
//获取历史数据
|
|
|
- getlistdaysData(menuList[activeIndex1.value].deviceID,historySearch)
|
|
|
+ getlistdaysData(menuList[activeIndex1.value].deviceID, historySearch)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
//获取实时数据-寸草塔二矿-报警历史
|
|
|
-async function getDeviceList(param){
|
|
|
- let res=await getDevice({ids:param,devicetype: "gasmonitor"})
|
|
|
- if(res && res.msgTxt.length!=0){
|
|
|
- echartData.maxData.data.length=0
|
|
|
- echartData.minData.data.length=0
|
|
|
- echartData.xData.length=0
|
|
|
- let data=res.msgTxt[0].datalist[0]
|
|
|
- topData.value=[
|
|
|
- {
|
|
|
+async function getDeviceList(param) {
|
|
|
+ let res = await getDevice({ ids: param, devicetype: "gasmonitor" })
|
|
|
+ if (res && res.msgTxt.length != 0) {
|
|
|
+ echartData.maxData.data.length = 0
|
|
|
+ echartData.minData.data.length = 0
|
|
|
+ echartData.xData.length = 0
|
|
|
+ let data = res.msgTxt[0].datalist[0]
|
|
|
+ topData.value = [
|
|
|
+ {
|
|
|
id: 0,
|
|
|
label: '瓦斯浓度(%)',
|
|
|
imgSrc: true,
|
|
|
- icon:'link',
|
|
|
+ icon: 'link',
|
|
|
value: data.readData.gasC || '--',
|
|
|
-
|
|
|
- },
|
|
|
- {
|
|
|
+
|
|
|
+ },
|
|
|
+ {
|
|
|
id: 1,
|
|
|
label: '二氧化碳浓度(%)',
|
|
|
imgSrc: true,
|
|
|
- icon:'co2val',
|
|
|
+ icon: 'co2val',
|
|
|
value: data.readData.co2val || '--',
|
|
|
-
|
|
|
- },
|
|
|
- {
|
|
|
+
|
|
|
+ },
|
|
|
+ {
|
|
|
id: 2,
|
|
|
label: '瓦斯抽采混量',
|
|
|
imgSrc: true,
|
|
|
- icon:'link',
|
|
|
+ icon: 'link',
|
|
|
value: data.readData.gasMixMass || '--',
|
|
|
-
|
|
|
- },
|
|
|
- {
|
|
|
+
|
|
|
+ },
|
|
|
+ {
|
|
|
id: 3,
|
|
|
label: '报警状态',
|
|
|
imgSrc: true,
|
|
|
- icon:'alarm-warning',
|
|
|
- value: data.warnLevel=='101' ? '低风险' : data.warnLevel=='102' ? '一般风险' : data.warnLevel=='103' ? '较大风险' : data.warnLevel=='104' ? '重大风险' : data.warnLevel=='201' ? '报警' : data.warnLevel=='10000' ? '数据超限' : data.warnLevel=='1001'? '网络中断' : '正常',
|
|
|
-
|
|
|
- },
|
|
|
- {
|
|
|
+ icon: 'alarm-warning',
|
|
|
+ value: data.warnLevel == '101' ? '低风险' : data.warnLevel == '102' ? '一般风险' : data.warnLevel == '103' ? '较大风险' : data.warnLevel == '104' ? '重大风险' : data.warnLevel == '201' ? '报警' : data.warnLevel == '10000' ? '数据超限' : data.warnLevel == '1001' ? '网络中断' : '正常',
|
|
|
+
|
|
|
+ },
|
|
|
+ {
|
|
|
id: 4,
|
|
|
label: '通信状态',
|
|
|
imgSrc: true,
|
|
|
- icon:'link',
|
|
|
- value: data.netStatus=='0' ? '断开' : '连接',
|
|
|
- },
|
|
|
-]
|
|
|
-zdType.value=data.stationtype || ''
|
|
|
-let list=JSON.parse(data.readData.gasGlFaultDia)
|
|
|
-echartData.maxData.data=[list.y1 || 0,list.ld_y,list.y2 || 0]
|
|
|
-echartData.minData.data=[list.y3 || 0,list.ld_y,list.y4 || 0]
|
|
|
-echartData.xData=[...new Set([list.x1,list.ld_x,list.x2,list.x3,list.x4])].sort((a,b)=>a-b)
|
|
|
-pointHisWarnDatas.x =list.ld_x
|
|
|
-pointHisWarnDatas.y=list.ld_y
|
|
|
+ icon: 'link',
|
|
|
+ value: data.netStatus == '0' ? '断开' : '连接',
|
|
|
+ },
|
|
|
+ ]
|
|
|
+ zdType.value = data.stationtype || ''
|
|
|
+ let list = JSON.parse(data.readData.gasGlFaultDia)
|
|
|
+ echartData.maxData.data = [list.y1 || 0, list.ld_y, list.y2 || 0]
|
|
|
+ echartData.minData.data = [list.y3 || 0, list.ld_y, list.y4 || 0]
|
|
|
+ echartData.xData = [...new Set([list.x1, list.ld_x, list.x2, list.x3, list.x4])].sort((a, b) => a - b)
|
|
|
}
|
|
|
|
|
|
}
|
|
|
//获取历史数据-寸草塔二矿
|
|
|
-async function getlistdaysData(Ids,param){
|
|
|
- if(zdType.value!='redis'){
|
|
|
- let res=await listdays({strtype: 'gasmonitor_normal',gdeviceid:Ids,...param})
|
|
|
- console.log(res,'获取历史数据-寸草塔二矿')
|
|
|
- xAxisPropType.value='ttime'
|
|
|
+async function getlistdaysData(Ids, param) {
|
|
|
+ if (zdType.value != 'redis') {
|
|
|
+ let res = await listdays({ strtype: 'gasmonitor_normal', gdeviceid: Ids, ...param })
|
|
|
+ console.log(res, '获取历史数据-寸草塔二矿')
|
|
|
+ xAxisPropType.value = 'ttime'
|
|
|
let data = res.datalist.records;
|
|
|
- if (data.length != 0) {
|
|
|
- data.forEach((el) => {
|
|
|
- Object.assign(el, el.readData);
|
|
|
- });
|
|
|
- }
|
|
|
- hisEchartData.value = data;
|
|
|
- console.log( hisEchartData.value,' hisEchartData.value')
|
|
|
- }else {
|
|
|
-let res=await getHistoryData({ pageNum: 1,pageSize: 100,deviceId:Ids,isEmployee: true,...param})
|
|
|
-console.log(res,'获取历史数据-寸草塔二矿')
|
|
|
-xAxisPropType.value='time'
|
|
|
- hisEchartData.value = res['records'];
|
|
|
+ if (data.length != 0) {
|
|
|
+ data.forEach((el) => {
|
|
|
+ Object.assign(el, el.readData);
|
|
|
+ });
|
|
|
+ }
|
|
|
+ hisEchartData.value = data;
|
|
|
+ console.log(hisEchartData.value, ' hisEchartData.value')
|
|
|
+ } else {
|
|
|
+ let res = await getHistoryData({ pageNum: 1, pageSize: 100, deviceId: Ids, isEmployee: true, ...param })
|
|
|
+ console.log(res, '获取历史数据-寸草塔二矿')
|
|
|
+ xAxisPropType.value = 'time'
|
|
|
+ hisEchartData.value = res['records'];
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
}
|
|
|
-async function getlistdaysData1(param){
|
|
|
- historySearch.ttime_begin=param.ttime_begin
|
|
|
- historySearch.ttime_end=param.ttime_end
|
|
|
- let res=await listdays({strtype: 'gasmonitor_normal',gdeviceid:menuList[activeIndex1.value].deviceID,...historySearch})
|
|
|
- console.log(res,'获取历史数据-寸草塔二矿')
|
|
|
-
|
|
|
- if(zdType.value!='redis'){
|
|
|
- let res=await listdays({strtype: 'gasmonitor_normal',gdeviceid:menuList[activeIndex1.value].deviceID,...historySearch})
|
|
|
- console.log(res,'获取历史数据-寸草塔二矿')
|
|
|
- xAxisPropType.value='ttime'
|
|
|
+async function getlistdaysData1(param) {
|
|
|
+ historySearch.ttime_begin = param.ttime_begin
|
|
|
+ historySearch.ttime_end = param.ttime_end
|
|
|
+ let res = await listdays({ strtype: 'gasmonitor_normal', gdeviceid: menuList[activeIndex1.value].deviceID, ...historySearch })
|
|
|
+ console.log(res, '获取历史数据-寸草塔二矿')
|
|
|
+
|
|
|
+ if (zdType.value != 'redis') {
|
|
|
+ let res = await listdays({ strtype: 'gasmonitor_normal', gdeviceid: menuList[activeIndex1.value].deviceID, ...historySearch })
|
|
|
+ console.log(res, '获取历史数据-寸草塔二矿')
|
|
|
+ xAxisPropType.value = 'ttime'
|
|
|
let data = res.datalist.records;
|
|
|
- if (data.length != 0) {
|
|
|
- data.forEach((el) => {
|
|
|
- Object.assign(el, el.readData);
|
|
|
- });
|
|
|
- }
|
|
|
- hisEchartData.value = data;
|
|
|
- }else {
|
|
|
-let res=await getHistoryData({ pageNum: 1,pageSize: 100,deviceId:menuList[activeIndex1.value].deviceID,isEmployee: true,...param})
|
|
|
-console.log(res,'获取历史数据-寸草塔二矿')
|
|
|
-xAxisPropType.value='time'
|
|
|
- hisEchartData.value = res['records'];
|
|
|
+ if (data.length != 0) {
|
|
|
+ data.forEach((el) => {
|
|
|
+ Object.assign(el, el.readData);
|
|
|
+ });
|
|
|
+ }
|
|
|
+ hisEchartData.value = data;
|
|
|
+ } else {
|
|
|
+ let res = await getHistoryData({ pageNum: 1, pageSize: 100, deviceId: menuList[activeIndex1.value].deviceID, isEmployee: true, ...param })
|
|
|
+ console.log(res, '获取历史数据-寸草塔二矿')
|
|
|
+ xAxisPropType.value = 'time'
|
|
|
+ hisEchartData.value = res['records'];
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -397,11 +387,11 @@ function btnClick(ind) {
|
|
|
if (sysOrgCode == 'sdmtjtbetmk') {
|
|
|
activeIndex1.value = 0;
|
|
|
isShow.value = 'yjzb';
|
|
|
- } else if(sysOrgCode == 'sdmtjtbdmk') {
|
|
|
+ } else if (sysOrgCode == 'sdmtjtbdmk') {
|
|
|
activeIndex1.value = 0;
|
|
|
isShow.value = 'gzzd';
|
|
|
getMonitor(true);
|
|
|
- }else {
|
|
|
+ } else {
|
|
|
activeIndex1.value = 0;
|
|
|
isShow.value = '';
|
|
|
}
|
|
@@ -417,14 +407,20 @@ function btnClick(ind) {
|
|
|
function cardClick(ind, item) {
|
|
|
clearTimeout(timer);
|
|
|
activeIndex1.value = ind;
|
|
|
- gzTime.value=item.time
|
|
|
+ gzTime.value = item.time
|
|
|
chartListWs.length = 0;
|
|
|
getMonitor(true);
|
|
|
}
|
|
|
|
|
|
onMounted(() => {
|
|
|
- getMenuList();
|
|
|
- getMonitor(true);
|
|
|
+ const { sysOrgCode } = useGlobSetting();
|
|
|
+ if (sysOrgCode == 'sdmtjtbdmk') {
|
|
|
+ getBjlist()
|
|
|
+ getMonitor(true);
|
|
|
+ } else {
|
|
|
+ getMenuList();
|
|
|
+ getMonitor(true);
|
|
|
+ }
|
|
|
});
|
|
|
onUnmounted(() => {
|
|
|
if (timer) {
|