Browse Source

[Pref 0000] 文件重命名

houzekong 1 week ago
parent
commit
5b45f01c97

+ 9 - 4
src/views/vent/gas/gasPipeNet/index.vue

@@ -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');

+ 0 - 0
src/views/vent/monitorManager/comment/GasPipeNetTable.vue → src/views/vent/monitorManager/comment/GasPipeTable.vue


+ 2 - 2
src/views/vent/monitorManager/deviceMonitor/components/device/index.vue

@@ -385,7 +385,7 @@
             </template>
             <!-- 瓦斯管网 -->
             <template v-else-if="deviceType.startsWith('gaspipe') && activeKey == '1'">
-              <GasPipeNetTable :dataSource="dataSource" :deviceType="deviceType" :scroll="scroll" @locate="goLocation" />
+              <GasPipeTable :dataSource="dataSource" :deviceType="deviceType" :scroll="scroll" @locate="goLocation" />
             </template>
             <template v-else>
               <!-- 工作面echarts图标 -->
@@ -628,7 +628,7 @@
   import gasInspectDialog from '../../../comment/gasInspectDialog.vue';
   import DustingTable from '../../../comment/DustingTable.vue';
   import bundleSpyMonitorTable from '../../../comment/bundleSpyMonitorTable.vue';
-  import GasPipeNetTable from '../../../comment/GasPipeNetTable.vue';
+  import GasPipeTable from '../../../comment/GasPipeTable.vue';
   import HistoryTableMajorPath from './modal/HistoryTableMajorPath.vue';
   import HistoryBall from './modal/history-ball.vue';
   import { TreeProps, message, Progress, Input, Select } from 'ant-design-vue';