Browse Source

[Feat 0000] 瓦斯监测添加瓦斯泄露相关的字段

houzekong 3 weeks ago
parent
commit
9145299ba0

+ 1 - 0
src/views/vent/home/configurable/configurable.data.bd.ts

@@ -1044,6 +1044,7 @@ export const testConfigBDFire: Config[] = [
   {
     deviceType: 'aqjkArray',
     moduleName: '安全监控系统',
+    // moduleName: '智能通风DeepSeek',
     pageType: 'BD_fire',
     moduleData: {
       header: {

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

@@ -319,6 +319,47 @@
                 </template>
               </MonitorTable>
             </template>
+            <template v-else-if="deviceType.startsWith('gasmonitor') && activeKey == '1'">
+              <MonitorTable
+                ref="monitorTable"
+                :columnsType="`${deviceType}_monitor`"
+                :dataSource="dataSource"
+                design-scope="device_monitor"
+                :isShowActionColumn="true"
+                :isShowSelect="false"
+                title="设备监测"
+                :scroll="{ y: scroll.y - 30 }"
+              >
+                <template #action="{ record }">
+                  <TableAction
+                    :actions="[
+                      {
+                        label: '故障诊断分析',
+                        onClick: goDetail.bind(null, record),
+                      },
+                      {
+                        label: '定位',
+                        onClick: goLocation.bind(null, record),
+                      },
+                    ]"
+                  />
+                </template>
+                <template #filterCell="{ column, record }">
+                  <template v-if="column.dataIndex === 'isLeakage'">
+                    {{ record.isLeakage === '1' ? '是' : '否' }}
+                  </template>
+                  <template v-if="column.dataIndex === 'leakagePoint' && record.pipFaultDiag && record.pipFaultDiag.isLeakage">
+                    {{ record.pipFaultDiag.ld_x }}
+                  </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' ? '#f00' : 'green'">
+                    {{ record.netStatus == '0' ? '断开' : '连接' }}
+                  </a-tag>
+                </template>
+              </MonitorTable>
+            </template>
             <!-- 瓦斯人工巡检 -->
             <template v-else-if="deviceType.startsWith('gasDay_normal') && activeKey == '1'">
               <gaspatrolTable :tableData="gaspatrolData" @getSearch="getSearch" @locate="goLocation"></gaspatrolTable>
@@ -1151,6 +1192,9 @@
       } else if (deviceType.value.indexOf('pulping') != -1) {
         const newPage = router.resolve({ path: '/grout-home', query: { id: activeID.value } });
         window.open(newPage.href, '_blank');
+      } else if (deviceType.value.indexOf('gasmonitor') != -1) {
+        const newPage = router.resolve({ path: '/gas/warn/home' });
+        window.open(newPage.href, '_blank');
       } else {
         message.info('待开发。。。');
       }