|
@@ -101,22 +101,22 @@
|
|
|
:scroll="scroll" :isAction="true" :isShowSelect="false">
|
|
|
<template #action="{ record }">
|
|
|
<TableAction :actions="haveDetailArr.find((item) => deviceType.startsWith(item))
|
|
|
- ? [
|
|
|
- {
|
|
|
- label: '详情',
|
|
|
- onClick: goDetail.bind(null, record),
|
|
|
- },
|
|
|
- {
|
|
|
- label: '定位',
|
|
|
- onClick: goLocation.bind(null, record),
|
|
|
- },
|
|
|
- ]
|
|
|
- : [
|
|
|
- {
|
|
|
- label: '定位',
|
|
|
- onClick: goLocation.bind(null, record),
|
|
|
- },
|
|
|
- ]
|
|
|
+ ? [
|
|
|
+ {
|
|
|
+ label: '详情',
|
|
|
+ onClick: goDetail.bind(null, record),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '定位',
|
|
|
+ onClick: goLocation.bind(null, record),
|
|
|
+ },
|
|
|
+ ]
|
|
|
+ : [
|
|
|
+ {
|
|
|
+ label: '定位',
|
|
|
+ onClick: goLocation.bind(null, record),
|
|
|
+ },
|
|
|
+ ]
|
|
|
" />
|
|
|
</template>
|
|
|
</GroupMonitorTable>
|
|
@@ -131,22 +131,22 @@
|
|
|
title="设备监测" :form-config="formConfig" :scroll="{ y: scroll.y - 110 }">
|
|
|
<template #action="{ record }">
|
|
|
<TableAction :actions="haveDetailArr.find((item) => deviceType.startsWith(item))
|
|
|
- ? [
|
|
|
- {
|
|
|
- label: '详情',
|
|
|
- onClick: goDetail.bind(null, record),
|
|
|
- },
|
|
|
- {
|
|
|
- label: '定位',
|
|
|
- onClick: goLocation.bind(null, record),
|
|
|
- },
|
|
|
- ]
|
|
|
- : [
|
|
|
- {
|
|
|
- label: '定位',
|
|
|
- onClick: goLocation.bind(null, record),
|
|
|
- },
|
|
|
- ]
|
|
|
+ ? [
|
|
|
+ {
|
|
|
+ label: '详情',
|
|
|
+ onClick: goDetail.bind(null, record),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '定位',
|
|
|
+ onClick: goLocation.bind(null, record),
|
|
|
+ },
|
|
|
+ ]
|
|
|
+ : [
|
|
|
+ {
|
|
|
+ label: '定位',
|
|
|
+ onClick: goLocation.bind(null, record),
|
|
|
+ },
|
|
|
+ ]
|
|
|
" />
|
|
|
</template>
|
|
|
<template #filterCell="{ column, record }">
|
|
@@ -190,6 +190,12 @@
|
|
|
</template>
|
|
|
</MonitorTable>
|
|
|
</template>
|
|
|
+ <!-- 瓦斯巡检 -->
|
|
|
+ <template v-else-if="deviceType.startsWith('gaspatrol') && activeKey == '1'">
|
|
|
+ <gaspatrolTable :addressData="addressData" :personData="personData" :instypeData="instypeData"
|
|
|
+ :classData="classData" :tableData="gaspatrolData" @addressInput="addressInput" @userInput="userInput"
|
|
|
+ @insTypeChange="insTypeChange" @classChange="classChange"></gaspatrolTable>
|
|
|
+ </template>
|
|
|
<template v-else>
|
|
|
<!-- 工作面echarts图标 -->
|
|
|
<BarAndLine v-if="activeKey == '1' && deviceType == 'surface_history'" class="echarts-line"
|
|
@@ -200,62 +206,62 @@
|
|
|
title="设备监测" :scroll="{ y: scroll.y - 30 }">
|
|
|
<template #action="{ record }">
|
|
|
<TableAction :actions="haveDetailArr.find((item) => deviceType.startsWith(item))
|
|
|
- ? [
|
|
|
- {
|
|
|
- label: '详情',
|
|
|
- onClick: goDetail.bind(null, record),
|
|
|
- },
|
|
|
- {
|
|
|
- label: '定位',
|
|
|
- onClick: goLocation.bind(null, record),
|
|
|
- },
|
|
|
- ]
|
|
|
- : [
|
|
|
- {
|
|
|
- label: '定位',
|
|
|
- onClick: goLocation.bind(null, record),
|
|
|
- },
|
|
|
- ]
|
|
|
+ ? [
|
|
|
+ {
|
|
|
+ label: '详情',
|
|
|
+ onClick: goDetail.bind(null, record),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '定位',
|
|
|
+ onClick: goLocation.bind(null, record),
|
|
|
+ },
|
|
|
+ ]
|
|
|
+ : [
|
|
|
+ {
|
|
|
+ label: '定位',
|
|
|
+ onClick: goLocation.bind(null, record),
|
|
|
+ },
|
|
|
+ ]
|
|
|
" />
|
|
|
</template>
|
|
|
<template #filterCell="{ column, record }">
|
|
|
<template v-if="deviceType.startsWith('gate') || deviceType.startsWith('door')">
|
|
|
- <a-tag v-if="column.dataIndex === 'frontGateOpen' && record.frontGateOpen == '0' && record.frontGateClose == '0'" color="red"
|
|
|
- >正在运行</a-tag
|
|
|
- >
|
|
|
- <a-tag v-else-if="column.dataIndex === 'frontGateOpen' && record.frontGateOpen == '0' && record.frontGateClose == 1" color="default"
|
|
|
- >关闭</a-tag
|
|
|
- >
|
|
|
- <a-tag v-else-if="column.dataIndex === 'frontGateOpen' && record.frontGateOpen == '1' && record.frontGateClose == '0'" color="#46C66F"
|
|
|
- >打开</a-tag
|
|
|
- >
|
|
|
- <a-tag v-else-if="column.dataIndex === 'frontGateOpen' && record.frontGateOpen == '1' && record.frontGateClose == '1'" color="#FF0000"
|
|
|
- >点位异常</a-tag
|
|
|
- >
|
|
|
- <a-tag v-if="column.dataIndex === 'rearGateOpen' && record.rearGateOpen == '0' && record.rearGateClose == '0'" color="red"
|
|
|
- >正在运行</a-tag
|
|
|
- >
|
|
|
- <a-tag v-else-if="column.dataIndex === 'rearGateOpen' && record.rearGateOpen == '0' && record.rearGateClose == '1'" color="default"
|
|
|
- >关闭</a-tag
|
|
|
- >
|
|
|
- <a-tag v-else-if="column.dataIndex === 'rearGateOpen' && record.rearGateOpen == '1' && record.rearGateClose == '0'" color="#46C66F"
|
|
|
- >打开</a-tag
|
|
|
- >
|
|
|
- <a-tag v-else-if="column.dataIndex === 'rearGateOpen' && record.rearGateOpen == '1' && record.rearGateClose == '1'" color="#FF0000"
|
|
|
- >点位异常</a-tag
|
|
|
- >
|
|
|
- <a-tag v-if="column.dataIndex === 'midGateOpen' && record.midGateOpen == '0' && record.midGateClose == '0'" color="red"
|
|
|
- >正在运行</a-tag
|
|
|
- >
|
|
|
- <a-tag v-else-if="column.dataIndex === 'midGateOpen' && record.midGateOpen == '0' && record.midGateClose == 1" color="default"
|
|
|
- >关闭</a-tag
|
|
|
- >
|
|
|
- <a-tag v-else-if="column.dataIndex === 'midGateOpen' && record.midGateOpen == '1' && record.midGateClose == '0'" color="#46C66F"
|
|
|
- >打开</a-tag
|
|
|
- >
|
|
|
- <a-tag v-else-if="column.dataIndex === 'midGateOpen' && record.midGateOpen == '1' && record.midGateClose == '1'" color="#FF0000"
|
|
|
- >点位异常</a-tag
|
|
|
- >
|
|
|
+ <a-tag
|
|
|
+ v-if="column.dataIndex === 'frontGateOpen' && record.frontGateOpen == '0' && record.frontGateClose == '0'"
|
|
|
+ color="red">正在运行</a-tag>
|
|
|
+ <a-tag
|
|
|
+ v-else-if="column.dataIndex === 'frontGateOpen' && record.frontGateOpen == '0' && record.frontGateClose == 1"
|
|
|
+ color="default">关闭</a-tag>
|
|
|
+ <a-tag
|
|
|
+ v-else-if="column.dataIndex === 'frontGateOpen' && record.frontGateOpen == '1' && record.frontGateClose == '0'"
|
|
|
+ color="#46C66F">打开</a-tag>
|
|
|
+ <a-tag
|
|
|
+ v-else-if="column.dataIndex === 'frontGateOpen' && record.frontGateOpen == '1' && record.frontGateClose == '1'"
|
|
|
+ color="#FF0000">点位异常</a-tag>
|
|
|
+ <a-tag
|
|
|
+ v-if="column.dataIndex === 'rearGateOpen' && record.rearGateOpen == '0' && record.rearGateClose == '0'"
|
|
|
+ color="red">正在运行</a-tag>
|
|
|
+ <a-tag
|
|
|
+ v-else-if="column.dataIndex === 'rearGateOpen' && record.rearGateOpen == '0' && record.rearGateClose == '1'"
|
|
|
+ color="default">关闭</a-tag>
|
|
|
+ <a-tag
|
|
|
+ v-else-if="column.dataIndex === 'rearGateOpen' && record.rearGateOpen == '1' && record.rearGateClose == '0'"
|
|
|
+ color="#46C66F">打开</a-tag>
|
|
|
+ <a-tag
|
|
|
+ v-else-if="column.dataIndex === 'rearGateOpen' && record.rearGateOpen == '1' && record.rearGateClose == '1'"
|
|
|
+ color="#FF0000">点位异常</a-tag>
|
|
|
+ <a-tag
|
|
|
+ v-if="column.dataIndex === 'midGateOpen' && record.midGateOpen == '0' && record.midGateClose == '0'"
|
|
|
+ color="red">正在运行</a-tag>
|
|
|
+ <a-tag
|
|
|
+ v-else-if="column.dataIndex === 'midGateOpen' && record.midGateOpen == '0' && record.midGateClose == 1"
|
|
|
+ color="default">关闭</a-tag>
|
|
|
+ <a-tag
|
|
|
+ v-else-if="column.dataIndex === 'midGateOpen' && record.midGateOpen == '1' && record.midGateClose == '0'"
|
|
|
+ color="#46C66F">打开</a-tag>
|
|
|
+ <a-tag
|
|
|
+ v-else-if="column.dataIndex === 'midGateOpen' && record.midGateOpen == '1' && record.midGateClose == '1'"
|
|
|
+ color="#FF0000">点位异常</a-tag>
|
|
|
<template v-if="column.dataIndex === 'doorUse'">
|
|
|
<span v-if="record.doorUse == 1" color="default">行车风门</span>
|
|
|
<span v-else-if="record.doorUse == 2">行人风门</span>
|
|
@@ -288,8 +294,10 @@
|
|
|
<a-tag v-if="column.dataIndex === 'stateConn' && record.stateConn == '0'" color="red">断开</a-tag>
|
|
|
</template>
|
|
|
<template v-else-if="deviceType.startsWith('gaspatrol')">
|
|
|
- <a-tag v-if="column.dataIndex === 'deviceConnect_str' && record.deviceConnect_str.endsWith('正常')" color="green">{{record.deviceConnect_str}}</a-tag>
|
|
|
- <a-tag v-if="column.dataIndex === 'deviceConnect_str' && record.deviceConnect_str.endsWith('断开')" color="red">{{record.deviceConnect_str}}</a-tag>
|
|
|
+ <a-tag v-if="column.dataIndex === 'deviceConnect_str' && record.deviceConnect_str.endsWith('正常')"
|
|
|
+ color="green">{{ record.deviceConnect_str }}</a-tag>
|
|
|
+ <a-tag v-if="column.dataIndex === 'deviceConnect_str' && record.deviceConnect_str.endsWith('断开')"
|
|
|
+ color="red">{{ record.deviceConnect_str }}</a-tag>
|
|
|
</template>
|
|
|
<a-tag v-if="column.dataIndex === 'warnFlag'"
|
|
|
:color="record.warnFlag == 0 ? 'green' : record.warnFlag == 1 ? '#FF5812' : 'gray'">
|
|
@@ -352,12 +360,13 @@
|
|
|
<script setup lang="ts">
|
|
|
import { ref, onMounted, onUnmounted, ComponentOptions, shallowRef, reactive, defineProps, watch } from 'vue';
|
|
|
import { SendOutlined, FullscreenExitOutlined, FullscreenOutlined } from '@ant-design/icons-vue';
|
|
|
-import { list, getDeviceList, getDeviceTypeList, devPosition, getDepartmentInfo, getExportUrl } from './device.api';
|
|
|
+import { list, getDeviceList, getDeviceTypeList, devPosition, getDepartmentInfo, getExportUrl, queryNowGasInsInfo, } from './device.api';
|
|
|
import AlarmHistoryTable from '../../../comment/AlarmHistoryTable.vue';
|
|
|
import HistoryTable from '../../../comment/HistoryTable.vue';
|
|
|
import HandlerHistoryTable from '../../../comment/HandlerHistoryTable.vue';
|
|
|
import MonitorTable from '../../../comment/MonitorTable.vue';
|
|
|
import GroupMonitorTable from '../../../comment/GroupMonitorTable.vue';
|
|
|
+import gaspatrolTable from '../../../comment/gaspatrolTable.vue'
|
|
|
import HistoryBall from './modal/history-ball.vue'
|
|
|
import { TreeProps, message, Progress, Input, Select } from 'ant-design-vue';
|
|
|
import { TableAction } from '/@/components/Table';
|
|
@@ -387,6 +396,13 @@ import { useMethods } from '/@/hooks/system/useMethods';
|
|
|
import { useGo } from '/@/hooks/web/usePage';
|
|
|
import { useGlobSetting } from '/@/hooks/setting';
|
|
|
|
|
|
+//瓦斯巡检查询参数
|
|
|
+const addressData = ref('')//巡检地点
|
|
|
+const personData = ref('')//巡检员
|
|
|
+const instypeData = ref('')//巡检类型
|
|
|
+const classData = ref('')//巡检班次
|
|
|
+const gaspatrolData = ref<any[]>([])
|
|
|
+
|
|
|
const glob = useGlobSetting();
|
|
|
// import { BorderBox8 as DvBorderBox8 } from '@kjgl77/datav-vue3';
|
|
|
|
|
@@ -488,12 +504,12 @@ const onSelect: TreeProps['onSelect'] = (keys, e) => {
|
|
|
// clearTimeout(startMonitorTimer);
|
|
|
// }
|
|
|
dataSource.value = [];
|
|
|
- if(!startMonitorTimer){
|
|
|
+ if (!startMonitorTimer) {
|
|
|
startMonitorTimer = setTimeout(() => {
|
|
|
expandedKeys.value = keys;
|
|
|
selectedKeys.value = keys;
|
|
|
treeNodeTitle.value = e.node.title;
|
|
|
-
|
|
|
+
|
|
|
// if (e.node.children?.length < 1 && timer) {
|
|
|
// getMonitor(true);
|
|
|
// }
|
|
@@ -558,7 +574,11 @@ function getMonitor(flag?) {
|
|
|
if (Object.prototype.toString.call(timer) === '[object Null]') {
|
|
|
timer = setTimeout(
|
|
|
async () => {
|
|
|
- await getDataSource();
|
|
|
+ if (!deviceType.value.startsWith('gaspatrol')) {
|
|
|
+ await getDataSource();
|
|
|
+ } else {
|
|
|
+ await queryNowGasInsInfoList();
|
|
|
+ }
|
|
|
if (timer) {
|
|
|
getMonitor();
|
|
|
}
|
|
@@ -736,15 +756,41 @@ async function getDataSource() {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+//查询当前各班瓦斯巡检信息
|
|
|
+async function queryNowGasInsInfoList() {
|
|
|
+ let res = await queryNowGasInsInfo({ address: addressData.value, userName: personData.value, insType: instypeData.value, class: classData.value })
|
|
|
+ console.log(res, '查询当前各班瓦斯巡检信息')
|
|
|
+ if (res.length) {
|
|
|
+ gaspatrolData.value = res
|
|
|
+ } else {
|
|
|
+ gaspatrolData.value = []
|
|
|
+ }
|
|
|
+}
|
|
|
+//巡检地点输入
|
|
|
+let addressInput = (param) => {
|
|
|
+ addressData.value = param
|
|
|
+}
|
|
|
+//巡检员输入
|
|
|
+let userInput = (param) => {
|
|
|
+ personData.value = param
|
|
|
+}
|
|
|
+//巡检类型选项切换
|
|
|
+let insTypeChange = (param) => {
|
|
|
+ instypeData.value = param
|
|
|
+}
|
|
|
+//巡检班次选项切换
|
|
|
+let classChange = (param) => {
|
|
|
+ classData.value = param
|
|
|
+}
|
|
|
function goLocation(record) {
|
|
|
- if(record['deviceType'] == 'person_bd' || record['deviceType'] == 'car_bd'){
|
|
|
+ if (record['deviceType'] == 'person_bd' || record['deviceType'] == 'car_bd') {
|
|
|
actions.setGlobalState({ locationId: record.devNum, locationObj: null, pageObj: null, type: record['deviceType'].split('_')[0] });
|
|
|
- }else{
|
|
|
- if(deviceType.value.startsWith('location')){
|
|
|
+ } else {
|
|
|
+ if (deviceType.value.startsWith('location')) {
|
|
|
actions.setGlobalState({ locationId: record.deviceID, locationObj: null, pageObj: null, type: 'person' });
|
|
|
- }else if(deviceType.value.startsWith('vehicle')) {
|
|
|
+ } else if (deviceType.value.startsWith('vehicle')) {
|
|
|
actions.setGlobalState({ locationId: record.deviceID, locationObj: null, pageObj: null, type: 'car' });
|
|
|
- }else{
|
|
|
+ } else {
|
|
|
actions.setGlobalState({ locationId: record.deviceID, locationObj: null, pageObj: null });
|
|
|
}
|
|
|
}
|
|
@@ -785,7 +831,7 @@ function goDetail(record?) {
|
|
|
} else if (deviceType.value.indexOf('windrect') != -1) {
|
|
|
const newPage = router.resolve({ path: '/monitorChannel/monitor-windrect', query: { id: activeID.value, deviceType: deviceType.value } });
|
|
|
window.open(newPage.href, '_blank');
|
|
|
- } else if (deviceType.value.indexOf('fanmain') != -1 ) {
|
|
|
+ } else if (deviceType.value.indexOf('fanmain') != -1) {
|
|
|
const newPage = router.resolve({ path: '/monitorChannel/monitor-fanmain', query: { id: activeID.value, deviceType: deviceType.value } });
|
|
|
window.open(newPage.href, '_blank');
|
|
|
} else if (deviceType.value.indexOf('fanlocal') != -1 && glob.sysOrgCode !== 'ymdnymdn') {
|
|
@@ -812,7 +858,7 @@ function goDetail(record?) {
|
|
|
} else if (systemType.value.indexOf('nitrogen') != -1) {
|
|
|
const newPage = router.resolve({ path: '/nitrogen-home', query: { id: systemID.value } });
|
|
|
window.open(newPage.href, '_blank');
|
|
|
- }else if (deviceType.value.indexOf('forcFan') != -1) {
|
|
|
+ } else if (deviceType.value.indexOf('forcFan') != -1) {
|
|
|
const newPage = router.resolve({ path: '/forcFan/home', query: { id: activeID.value } });
|
|
|
window.open(newPage.href, '_blank');
|
|
|
} else if (deviceType.value.indexOf('pulping') != -1) {
|
|
@@ -1015,15 +1061,15 @@ watch(
|
|
|
onMounted(async () => {
|
|
|
const pageObj = props.pageData;
|
|
|
if (!pageObj) return;
|
|
|
- if (pageObj && pageObj.pageType ) {
|
|
|
- if(pageObj.pageType.startsWith('sys_')){
|
|
|
+ if (pageObj && pageObj.pageType) {
|
|
|
+ if (pageObj.pageType.startsWith('sys_')) {
|
|
|
await getDeviceType(pageObj.pageType);
|
|
|
findTreeDataValue({ deviceType: pageObj.pageType, deviceid: pageObj.deviceid });
|
|
|
- }else{
|
|
|
+ } else {
|
|
|
await getDeviceType();
|
|
|
findTreeDataValue({ deviceType: pageObj.pageType });
|
|
|
}
|
|
|
- }else{
|
|
|
+ } else {
|
|
|
await getDeviceType();
|
|
|
findTreeDataValue({ deviceid: pageObj.deviceid });
|
|
|
}
|