|
@@ -43,7 +43,7 @@
|
|
|
</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 }"
|
|
@@ -55,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="[
|
|
|
{
|
|
@@ -118,25 +118,29 @@
|
|
|
</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>
|
|
@@ -147,7 +151,7 @@
|
|
|
</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 AlarmHistoryTable from '../comment/AlarmHistoryTable.vue';
|
|
@@ -163,6 +167,7 @@ import DustModal from './modal/dust.modal.vue'
|
|
|
import { SvgIcon } from '/@/components/Icon';
|
|
|
import { getActions } from '/@/qiankun/state';
|
|
|
import { useRouter } from 'vue-router';
|
|
|
+import { setDivHeight } from '/@/utils/event';
|
|
|
|
|
|
|
|
|
type DeviceType = { deviceType: string, deviceName: string, datalist: any[] };
|
|
@@ -184,13 +189,13 @@ 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([]) //巷道定位图标显示列表
|
|
|
-let locationListTemp = []
|
|
|
const deviceList = ref<DeviceType[]>([]) //关联设备列表
|
|
|
const deviceActive = ref('')
|
|
|
const activeKey = ref('1'); // tab key
|
|
@@ -201,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']>([]);
|
|
|
|
|
@@ -278,19 +284,21 @@ async function getDeviceType() {
|
|
|
// 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[]>[]
|
|
@@ -305,8 +313,15 @@ async function getDataSource() {
|
|
|
})
|
|
|
|
|
|
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]) {
|
|
@@ -319,34 +334,6 @@ 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 }
|
|
|
- }
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
function goLocation(record) {
|
|
|
actions.setGlobalState({ locationId: record.deviceID, locationObj: null, pageObj: null });
|
|
|
}
|
|
@@ -411,6 +398,7 @@ function toHome() {
|
|
|
deviceList.value = []
|
|
|
if(timer) clearTimeout(timer)
|
|
|
timer = undefined
|
|
|
+ deviceType.value = ''
|
|
|
actions.setGlobalState({ pageObj: { pageType: 'home' } });
|
|
|
}
|
|
|
|
|
@@ -477,6 +465,13 @@ function setLocation() {
|
|
|
}, 600)
|
|
|
}
|
|
|
|
|
|
+watch(() => scroll.y, () => {
|
|
|
+ isRefresh.value = false
|
|
|
+ nextTick(() => {
|
|
|
+ isRefresh.value = true
|
|
|
+ } )
|
|
|
+})
|
|
|
+
|
|
|
onMounted(async () => {
|
|
|
actions.onGlobalStateChange((newState, prev) => {
|
|
|
for (const key in newState) {
|
|
@@ -494,7 +489,6 @@ onMounted(async () => {
|
|
|
const posShowData = pageObj.locationPlane
|
|
|
if (posShowData) {
|
|
|
locationList.value = posShowData
|
|
|
- locationListTemp = [...posShowData]
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -1039,8 +1033,8 @@ onUnmounted(() => {
|
|
|
}
|
|
|
|
|
|
:deep(.@{ventSpace}-tabs-tabpane-active) {
|
|
|
- overflow: auto;
|
|
|
- // height: 100%;
|
|
|
+ // overflow: auto;
|
|
|
+ height: 100%;
|
|
|
}
|
|
|
|
|
|
:deep(.zxm-select-dropdown) {
|