|
@@ -29,18 +29,21 @@
|
|
|
<div class="location-item">
|
|
|
<div class="item-title">{{ location.title }} :</div>
|
|
|
<div>
|
|
|
- <a-radio-group v-model:value="location.isVisible" :name="location.deviceType">
|
|
|
+ <a-radio-group v-model:value="location.Visible" :name="location.deviceType">
|
|
|
<a-radio :value="1">是</a-radio>
|
|
|
<a-radio :value="0">否</a-radio>
|
|
|
</a-radio-group>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
+ <div class="location-bottom-btn">
|
|
|
+ <span @click="setLocation">提交</span>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
- <div class="bottom-tabs-box" @mousedown="setDivHeight" id="monitorBox">
|
|
|
+ <div class="bottom-tabs-box" @mousedown="setDivHeight($event, 250, scroll)" id="monitorBox">
|
|
|
<div class="to-small" @click="toHome"></div>
|
|
|
<div class="device-button-group" v-if="deviceList.length > 0">
|
|
|
<div class="device-button" :class="{ 'device-active': deviceActive == device.deviceType }"
|
|
@@ -52,12 +55,12 @@
|
|
|
</div>
|
|
|
<a-tabs class="tabs-box" v-model:activeKey="activeKey" @change="tabChange">
|
|
|
<a-tab-pane key="1" tab="实时监测">
|
|
|
- <template v-if="deviceType == 'fan' && activeKey == '1'">
|
|
|
+ <template v-if="deviceType == 'fan' && activeKey == '1' && isRefresh">
|
|
|
<GroupMonitorTable :dataSource="dataSource" :columnsType="`${deviceType}_monitor`" />
|
|
|
</template>
|
|
|
- <template v-else-if="activeKey == '1'">
|
|
|
+ <template v-else-if="activeKey == '1' && isRefresh">
|
|
|
<MonitorTable ref="monitorTable" :columnsType="`${deviceType}_monitor`" :dataSource="dataSource"
|
|
|
- design-scope="device_monitor" :isShowPagination="false" :isShowActionColumn="true" title="设备监测">
|
|
|
+ design-scope="device_monitor" :isShowPagination="false" :isShowActionColumn="true" title="设备监测" :scroll="scroll">
|
|
|
<template #action="{ record }">
|
|
|
<TableAction :actions="[
|
|
|
{
|
|
@@ -70,30 +73,74 @@
|
|
|
},
|
|
|
]" />
|
|
|
</template>
|
|
|
+ <template #filterCell="{ column, record }">
|
|
|
+ <template v-if="deviceType.startsWith('gate')">
|
|
|
+ <template v-if="record.frontGateOpenCtrl">
|
|
|
+ <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'" color="processing">打开</a-tag>
|
|
|
+ </template>
|
|
|
+ <template v-else>
|
|
|
+ <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="default">打开</a-tag>
|
|
|
+ </template>
|
|
|
+ <template v-if="record.rearGateOpenCtrl">
|
|
|
+ <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'" color="processing">打开</a-tag>
|
|
|
+ </template>
|
|
|
+ <template v-else>
|
|
|
+ <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="default">打开</a-tag>
|
|
|
+ </template>
|
|
|
+ </template>
|
|
|
+ <template v-if="deviceType.startsWith('windrect')">
|
|
|
+ <a-tag v-if="column.dataIndex === 'sign'" :color="record.sign == 0 ? '#95CF65' : record.sign == 1 ? '#4590EA' : '#9876AA'"> {{
|
|
|
+ record.sign == 0 ? '高位' : record.sign == 1 ? '中位' : '低位'
|
|
|
+ }}</a-tag>
|
|
|
+ <template v-if="record && column && column.dataIndex === 'isRun' && record.isRun">
|
|
|
+ <a-tag v-if="record.isRun == -2 || record.isRun == -1" :color="record.isRun == -2 ? '#95CF65' : '#ED5700'">{{
|
|
|
+ record.isRun == -2 ? '空闲' : '等待'
|
|
|
+ }}</a-tag>
|
|
|
+ <a-tag v-else-if="record.isRun == 100" color="#4693FF">完成</a-tag>
|
|
|
+ <Progress v-else :percent="Number(record.isRun)" size="small" status="active" />
|
|
|
+ </template>
|
|
|
+ </template>
|
|
|
+ <a-tag v-if="column.dataIndex === 'warnFlag'" :color="record.warnFlag == 0 ? 'green' : record.warnFlag == 1 ? '#FF5812' : 'gray'"> {{
|
|
|
+ record.warnFlag == 0 ? '正常' : record.warnFlag == 1 ? '报警' : record.warnFlag == 2 ? '断开' : '未监测'
|
|
|
+ }}</a-tag>
|
|
|
+ <a-tag v-if="column.dataIndex === 'netStatus'" :color="record.netStatus == 0 ? 'default' : 'green'">{{
|
|
|
+ record.netStatus == 0 ? '断开' : '连接'
|
|
|
+ }}</a-tag>
|
|
|
+ </template>
|
|
|
</MonitorTable>
|
|
|
</template>
|
|
|
</a-tab-pane>
|
|
|
<a-tab-pane key="2" tab="历史数据">
|
|
|
<div class="tab-item">
|
|
|
- <HistoryTable ref="historyTable" v-if="activeKey == '2'" :sysId="systemID" :columns-type="`${deviceType}`"
|
|
|
+ <HistoryTable ref="historyTable" v-if="activeKey == '2' && isRefresh" :sysId="systemID" :columns-type="`${deviceType}`"
|
|
|
:device-type="deviceType"
|
|
|
:device-list-api="getDeviceList.bind(null, { strtype: deviceType, sysId: systemID })"
|
|
|
- designScope="device-history" />
|
|
|
+ designScope="device-history"
|
|
|
+ :scroll="scroll"
|
|
|
+ />
|
|
|
</div>
|
|
|
</a-tab-pane>
|
|
|
<a-tab-pane key="3" tab="报警历史">
|
|
|
<div class="tab-item">
|
|
|
- <AlarmHistoryTable ref="alarmHistoryTable" v-if="activeKey == '3'" :sysId="systemID" columns-type="alarm"
|
|
|
+ <AlarmHistoryTable ref="alarmHistoryTable" v-if="activeKey == '3' && isRefresh" :sysId="systemID" columns-type="alarm"
|
|
|
:device-type="deviceType"
|
|
|
:device-list-api="getDeviceList.bind(null, { strtype: deviceType, sysId: systemID })"
|
|
|
+ :scroll="scroll"
|
|
|
designScope="alarm-history" />
|
|
|
</div>
|
|
|
</a-tab-pane>
|
|
|
<a-tab-pane key="4" tab="操作历史">
|
|
|
<div class="tab-item">
|
|
|
- <HandlerHistoryTable ref="handlerHistoryTable" v-if="activeKey == '4'" :sysId="systemID"
|
|
|
+ <HandlerHistoryTable ref="handlerHistoryTable" v-if="activeKey == '4' && isRefresh" :sysId="systemID"
|
|
|
columns-type="operatorhistory" :device-type="deviceType"
|
|
|
:device-list-api="getDeviceList.bind(null, { strtype: deviceType, sysId: systemID })"
|
|
|
+ :scroll="scroll"
|
|
|
designScope="operator-history" />
|
|
|
</div>
|
|
|
</a-tab-pane>
|
|
@@ -104,23 +151,23 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
<script setup lang="ts">
|
|
|
-import { ref, onMounted, onUnmounted, ComponentOptions, shallowRef, nextTick } from 'vue'
|
|
|
+import { ref, onMounted, onUnmounted, ComponentOptions, shallowRef, nextTick, watch, reactive } from 'vue'
|
|
|
import { SendOutlined } from '@ant-design/icons-vue';
|
|
|
import { list, getDeviceList, getDeviceTypeList } from './device.api'
|
|
|
-// import { locationList } from './device.data'
|
|
|
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 { TreeProps, message } from 'ant-design-vue';
|
|
|
+import { TreeProps, message, Progress } from 'ant-design-vue';
|
|
|
import { TableAction } from '/@/components/Table';
|
|
|
import FiberModal from './modal/fiber.modal.vue';
|
|
|
+import BundleModal from './modal/bundle.modal.vue'
|
|
|
import DustModal from './modal/dust.modal.vue'
|
|
|
import { SvgIcon } from '/@/components/Icon';
|
|
|
import { getActions } from '/@/qiankun/state';
|
|
|
import { useRouter } from 'vue-router';
|
|
|
-import { initDictOptions } from '/@/utils/dict/index';
|
|
|
+import { setDivHeight } from '/@/utils/event';
|
|
|
|
|
|
|
|
|
type DeviceType = { deviceType: string, deviceName: string, datalist: any[] };
|
|
@@ -142,13 +189,14 @@ const currentModal = shallowRef<Nullable<ComponentOptions>>(null); //模态框
|
|
|
const modalVisible = ref<Boolean>(false); // 模态框是否可见
|
|
|
|
|
|
//
|
|
|
-const drawerHeight = ref(240) // 监测框最小高度
|
|
|
+
|
|
|
+// const drawerHeight = ref(240) // 监测框最小高度
|
|
|
const treeShow = ref(true) //是否显示树形菜单
|
|
|
const locationSettingShow = ref(false) //是否显示树形菜单
|
|
|
const treeNodeTitle = ref('') // 选中的树形标题
|
|
|
|
|
|
-const locationList = ref([])
|
|
|
-const deviceList = ref<DeviceType[]>([])
|
|
|
+const locationList = ref([]) //巷道定位图标显示列表
|
|
|
+const deviceList = ref<DeviceType[]>([]) //关联设备列表
|
|
|
const deviceActive = ref('')
|
|
|
const activeKey = ref('1'); // tab key
|
|
|
const dataSource = shallowRef([]) // 实时监测数据
|
|
@@ -158,8 +206,9 @@ const systemType = ref('')
|
|
|
const systemID = ref('') // 系统监测时,系统id
|
|
|
const selectedKeys = ref<string[]>([]);
|
|
|
const expandedKeys = ref<string[]>([]);
|
|
|
-const scroll = ref({
|
|
|
- y: drawerHeight.value - 100
|
|
|
+const isRefresh = ref(true)
|
|
|
+const scroll = reactive({
|
|
|
+ y: 240
|
|
|
})
|
|
|
const treeData = ref<TreeProps['treeData']>([]);
|
|
|
|
|
@@ -180,13 +229,14 @@ const onSelect: TreeProps['onSelect'] = (keys, e) => {
|
|
|
}
|
|
|
selectedKeys.values = keys
|
|
|
treeNodeTitle.value = e.node.title
|
|
|
- debugger
|
|
|
if(timer) clearTimeout(timer)
|
|
|
timer = undefined
|
|
|
if (monitorTable.value) monitorTable.value.setLoading(true)
|
|
|
nextTick(() => {
|
|
|
- timer = null
|
|
|
- getMonitor()
|
|
|
+ setTimeout(() => {
|
|
|
+ timer = null
|
|
|
+ getMonitor()
|
|
|
+ }, 0)
|
|
|
})
|
|
|
|
|
|
};
|
|
@@ -227,28 +277,28 @@ async function getDeviceType() {
|
|
|
});
|
|
|
return dataSourceList
|
|
|
}
|
|
|
- console.log('树形菜单-------------->', treeData.value)
|
|
|
treeData.value = getData(result, dataSource, key)
|
|
|
-
|
|
|
}
|
|
|
}
|
|
|
|
|
|
// https获取监测数据
|
|
|
let timer: null | NodeJS.Timeout = undefined;
|
|
|
function getMonitor() {
|
|
|
- if (timer) timer = null
|
|
|
- if (Object.prototype.toString.call(timer) === '[object Null]' && deviceType.value) {
|
|
|
- timer = setTimeout(async () => {
|
|
|
- await getDataSource()
|
|
|
- if (timer) {
|
|
|
- getMonitor();
|
|
|
- }
|
|
|
- }, 1000);
|
|
|
+ if(deviceType.value){
|
|
|
+ if (timer) timer = null
|
|
|
+ if (Object.prototype.toString.call(timer) === '[object Null]') {
|
|
|
+ timer = setTimeout(async () => {
|
|
|
+ await getDataSource()
|
|
|
+ if (timer) {
|
|
|
+ getMonitor();
|
|
|
+ }
|
|
|
+ }, 1000);
|
|
|
+ }
|
|
|
}
|
|
|
};
|
|
|
|
|
|
async function getDataSource() {
|
|
|
- if (deviceType.value.startsWith('sys') && systemID.value) {
|
|
|
+ if (deviceType.value && deviceType.value.startsWith('sys') && systemID.value) {
|
|
|
const res = await list({ devicetype: 'sys', systemID: systemID.value });
|
|
|
const result = res.msgTxt;
|
|
|
const deviceArr = <DeviceType[]>[]
|
|
@@ -261,10 +311,17 @@ async function getDataSource() {
|
|
|
deviceArr.unshift({ deviceType: item.type, deviceName: item['typeName'] ? item['typeName'] : item['datalist'][0]['typeName'], datalist: data })
|
|
|
}
|
|
|
})
|
|
|
- console.log('关联设备列表', deviceArr)
|
|
|
+
|
|
|
deviceList.value = deviceArr
|
|
|
- deviceActive.value = deviceArr[1].deviceType
|
|
|
- monitorChange(1)
|
|
|
+ if(deviceArr.length > 0){
|
|
|
+ if(deviceArr[1]){
|
|
|
+ deviceActive.value = deviceArr[1].deviceType
|
|
|
+ monitorChange(1)
|
|
|
+ }else{
|
|
|
+ deviceActive.value = deviceArr[0].deviceType
|
|
|
+ monitorChange(0)
|
|
|
+ }
|
|
|
+ }
|
|
|
} else {
|
|
|
const res = await list({ devicetype: deviceType.value, pagetype: 'normal' })
|
|
|
if (res.msgTxt[0]) {
|
|
@@ -277,41 +334,10 @@ async function getDataSource() {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-function setDivHeight(e: MouseEvent) {
|
|
|
- const divObject = document.getElementById('monitorBox') as HTMLElement
|
|
|
- const divHeight = divObject.offsetHeight
|
|
|
- drawerHeight.value = divHeight
|
|
|
- const startY = e.clientY
|
|
|
- document.onmousemove = function (res) {
|
|
|
- res.preventDefault()
|
|
|
- const distY = Math.abs(res.clientY - startY)
|
|
|
- if (res.clientY > startY) {
|
|
|
- if (divHeight - distY >= 240) {
|
|
|
- drawerHeight.value = divHeight - distY
|
|
|
- } else {
|
|
|
- drawerHeight.value = 240
|
|
|
- }
|
|
|
- }
|
|
|
- if (res.clientY < startY) {
|
|
|
- drawerHeight.value = divHeight + distY
|
|
|
- }
|
|
|
- divObject.style.height = drawerHeight.value + 'px'
|
|
|
- }
|
|
|
- document.onmouseup = function () {
|
|
|
- document.onmousemove = null
|
|
|
- if (scroll.value.y != drawerHeight.value - 100) {
|
|
|
- scroll.value = { y: drawerHeight.value - 100 }
|
|
|
-
|
|
|
- // const tableBody = document.getElementsByClassName('zxm-table-container')[0].children[1] as HTMLElement
|
|
|
- // debugger
|
|
|
- // tableBody.style.height = `${drawerHeight.value - 350}px`
|
|
|
- }
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
function goLocation(record) {
|
|
|
actions.setGlobalState({ locationId: record.deviceID, locationObj: null, pageObj: null });
|
|
|
}
|
|
|
+
|
|
|
function goDetail(record?) {
|
|
|
|
|
|
if (record) {
|
|
@@ -319,10 +345,14 @@ function goDetail(record?) {
|
|
|
activeID.value = record.deviceID
|
|
|
currentModal.value = FiberModal
|
|
|
modalVisible.value = true;
|
|
|
- } else if (deviceType.value.startsWith('dusting')) {
|
|
|
+ } else if (deviceType.value.startsWith('dusting')) { //bundletube
|
|
|
activeID.value = record.deviceID
|
|
|
currentModal.value = DustModal
|
|
|
modalVisible.value = true;
|
|
|
+ } else if (deviceType.value.startsWith('bundletube')) {
|
|
|
+ activeID.value = record.deviceID
|
|
|
+ currentModal.value = BundleModal
|
|
|
+ modalVisible.value = true;
|
|
|
} else if (deviceType.value.indexOf("gate") != -1) {
|
|
|
const newPage = router.resolve({ path: '/monitorChannel/monitor-gate' })
|
|
|
window.open(newPage.href, '_blank')
|
|
@@ -368,6 +398,7 @@ function toHome() {
|
|
|
deviceList.value = []
|
|
|
if(timer) clearTimeout(timer)
|
|
|
timer = undefined
|
|
|
+ deviceType.value = ''
|
|
|
actions.setGlobalState({ pageObj: { pageType: 'home' } });
|
|
|
}
|
|
|
|
|
@@ -393,7 +424,6 @@ async function findTreeDataValue(data: [], obj) {
|
|
|
})
|
|
|
}
|
|
|
findDeviceType(data, obj)
|
|
|
- debugger
|
|
|
if (timer === undefined) {
|
|
|
timer = null
|
|
|
await getDataSource()
|
|
@@ -419,7 +449,28 @@ function monitorChange(index) {
|
|
|
handlerHistoryTable.value.setLoading(true)
|
|
|
}
|
|
|
}
|
|
|
+/**
|
|
|
+ * 设置巷道设备定位图标的显示与隐藏
|
|
|
+ */
|
|
|
+function setLocation() {
|
|
|
+ let locationStr = ''
|
|
|
+ locationList.value.forEach((item: any) => {
|
|
|
+ if(item.Visible) {
|
|
|
+ locationStr = locationStr ? locationStr +','+ item.value : item.value
|
|
|
+ }
|
|
|
+ })
|
|
|
+ actions.setGlobalState({ locationId: null, locationObj: null, pageObj:null, locationPlane: locationStr });
|
|
|
+ setTimeout(() => {
|
|
|
+ message.success('设置成功')
|
|
|
+ }, 600)
|
|
|
+}
|
|
|
|
|
|
+watch(() => scroll.y, () => {
|
|
|
+ isRefresh.value = false
|
|
|
+ nextTick(() => {
|
|
|
+ isRefresh.value = true
|
|
|
+ } )
|
|
|
+})
|
|
|
|
|
|
onMounted(async () => {
|
|
|
actions.onGlobalStateChange((newState, prev) => {
|
|
@@ -435,15 +486,17 @@ onMounted(async () => {
|
|
|
findTreeDataValue(treeData.value, { deviceType: pageObj.pageType })
|
|
|
}
|
|
|
}
|
|
|
+ const posShowData = pageObj.locationPlane
|
|
|
+ if (posShowData) {
|
|
|
+ locationList.value = posShowData
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
})
|
|
|
await getDeviceType()
|
|
|
- locationList.value = await initDictOptions('devPosVisible')
|
|
|
- console.log('定位列表------------>', locationList.value)
|
|
|
- // getMonitor()
|
|
|
})
|
|
|
+
|
|
|
onUnmounted(() => {
|
|
|
if (timer) {
|
|
|
clearTimeout(timer);
|
|
@@ -706,6 +759,26 @@ onUnmounted(() => {
|
|
|
color: #87f1ff;
|
|
|
}
|
|
|
}
|
|
|
+ .location-bottom-btn{
|
|
|
+ width: 100%;
|
|
|
+ color: #fff;
|
|
|
+ display: flex;
|
|
|
+ justify-content: flex-end;
|
|
|
+ margin-top: 20px;
|
|
|
+ span{
|
|
|
+ display: inline-block;
|
|
|
+ width: 100%;
|
|
|
+ background: #00709955;
|
|
|
+ border-radius: 3px;
|
|
|
+ border: 1px solid rgba(174, 243, 255, 0.3);
|
|
|
+ text-align: center;
|
|
|
+ padding: 2px 0;
|
|
|
+ cursor: pointer;
|
|
|
+ &:hover{
|
|
|
+ background: #00557422;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
.location-select-show{
|
|
@@ -960,8 +1033,8 @@ onUnmounted(() => {
|
|
|
}
|
|
|
|
|
|
:deep(.@{ventSpace}-tabs-tabpane-active) {
|
|
|
- overflow: auto;
|
|
|
- // height: 100%;
|
|
|
+ // overflow: auto;
|
|
|
+ height: 100%;
|
|
|
}
|
|
|
|
|
|
:deep(.zxm-select-dropdown) {
|