|
@@ -2,6 +2,10 @@
|
|
|
<template>
|
|
|
<div class="gas-pipe-net">
|
|
|
<CustomHeader> 瓦斯管网监控系统 </CustomHeader>
|
|
|
+ <div style="width: 100%; height: 100%; position: absolute; left: 0; top: 0; z-index: 0">
|
|
|
+ <VentModal />
|
|
|
+ </div>
|
|
|
+
|
|
|
<div class="scene-box">
|
|
|
<div class="top-box">
|
|
|
<!-- <VentBox1 class="flex-3"> 123123123 </VentBox1>
|
|
@@ -22,9 +26,9 @@
|
|
|
<div class="bottom-tabs-box" @mousedown="setDivHeight($event, 175, scroll, 0)">
|
|
|
<DvBorderBox8 class="dv_border_8 p-5px" :dur="5" :style="{ height: `${scroll.y + 128}px` }">
|
|
|
<a-tabs class="tabs-box" v-model:activeKey="activeKey">
|
|
|
- <a-tab-pane key="1" tab="瓦斯管道监测"> <GasPipeNetTable :deviceType="deviceType" :dataSource="[]" :scroll="scroll" /> </a-tab-pane>
|
|
|
- <a-tab-pane key="2" tab="瓦斯网络解算" disabled> 1212312312313321 </a-tab-pane>
|
|
|
- <a-tab-pane key="3" tab="管道阀门监控"> assasdsdsdsdds </a-tab-pane>
|
|
|
+ <a-tab-pane key="1" tab="瓦斯管道监测"> <GasPipeTable :deviceType="deviceType" :dataSource="[]" :scroll="scroll" /> </a-tab-pane>
|
|
|
+ <!-- <a-tab-pane key="2" tab="瓦斯网络解算" disabled> 1212312312313321 </a-tab-pane> -->
|
|
|
+ <a-tab-pane key="3" tab="管道阀门监控"> <GasPipeTable :deviceType="deviceType" :dataSource="[]" :scroll="scroll" /> </a-tab-pane>
|
|
|
</a-tabs>
|
|
|
</DvBorderBox8>
|
|
|
</div>
|
|
@@ -39,7 +43,8 @@
|
|
|
import { BorderBox8 as DvBorderBox8 } from '@kjgl77/datav-vue3';
|
|
|
import ModuleCommon from '../../home/configurable/components/ModuleCommon.vue';
|
|
|
import { moduleConfigs } from './gasPipeNet.data';
|
|
|
- import GasPipeNetTable from '../../monitorManager/comment/GasPipeNetTable.vue';
|
|
|
+ import GasPipeTable from '../../monitorManager/comment/GasPipeTable.vue';
|
|
|
+ import VentModal from '/@/components/vent/micro/ventModal.vue';
|
|
|
|
|
|
const scroll = ref<{ x: true; y: number }>({ x: true, y: 202 });
|
|
|
const activeKey = ref('1');
|