Browse Source

寸一 粉尘检测 束管报表配置

bobo04052021@163.com 2 weeks ago
parent
commit
7b810d6404

+ 177 - 0
src/views/vent/bundle/bundleMonitorTable/bundle-table.data.ts

@@ -1393,3 +1393,180 @@ export const wlmlcolumns: BasicColumn[] = [
     align: 'center',
   },
 ];
+export const Cctkcolumns: BasicColumn[] = [
+  {
+    title: '设备名称',
+    width: 100,
+    align: 'center',
+    dataIndex: 'sbmc',
+    key: 'sbmc',
+  },
+  {
+    title: '管路名称',
+    dataIndex: 'jcdd',
+    key: 'jcdd',
+    width: 100,
+    align: 'center',
+  },
+  {
+    title: '管路编号',
+    dataIndex: 'glbh',
+    key: 'glbh',
+    width: 80,
+    align: 'center',
+  },
+  {
+    title: '分析次数',
+    dataIndex: 'fxcs',
+    key: 'fxcs',
+    width: 100,
+    align: 'center',
+  },
+
+  {
+    title: 'CO(PPM)',
+    children: [
+      {
+        title: '最大值',
+        dataIndex: 'co_max',
+        key: 'co_max',
+        width: 80,
+        align: 'center',
+      },
+      {
+        title: '平均值',
+        dataIndex: 'co_ave',
+        key: 'co_ave',
+        width: 80,
+        align: 'center',
+      },
+    ],
+  },
+  {
+    title: 'CO₂(%)',
+    children: [
+      {
+        title: '最大值',
+        dataIndex: 'co2_max',
+        key: 'co2_max',
+        width: 80,
+        align: 'center',
+      },
+      {
+        title: '平均值',
+        dataIndex: 'co2_ave',
+        key: 'co2_ave',
+        width: 80,
+        align: 'center',
+      },
+    ],
+  },
+  {
+    title: 'O₂(%)',
+    children: [
+      {
+        title: '最大值',
+        dataIndex: 'o2_min',
+        key: 'o2_min',
+        width: 80,
+        align: 'center',
+      },
+      {
+        title: '平均值',
+        dataIndex: 'o2_ave',
+        key: 'o2_ave',
+        width: 80,
+        align: 'center',
+      },
+    ],
+  },
+
+  {
+    title: 'CH₄(%)',
+    children: [
+      {
+        title: '最大值',
+        dataIndex: 'ch4_max',
+        key: 'ch4_max',
+        width: 80,
+        align: 'center',
+      },
+      {
+        title: '平均值',
+        dataIndex: 'ch4_ave',
+        key: 'ch4_ave',
+        width: 80,
+        align: 'center',
+      },
+    ],
+  },
+  {
+    title: 'N₂(%)',
+    children: [
+      {
+        title: '最大值',
+        dataIndex: 'n2_max',
+        key: 'n2_max',
+        width: 80,
+        align: 'center',
+      },
+      {
+        title: '平均值',
+        dataIndex: 'n2_ave',
+        key: 'n2_ave',
+        width: 80,
+        align: 'center',
+      },
+    ],
+  },
+  {
+    title: 'C₂H₂(PPM)',
+    children: [
+      {
+        title: '最大值',
+        dataIndex: 'c2h2_max',
+        key: 'c2h2_max',
+        width: 80,
+        align: 'center',
+      },
+      {
+        title: '平均值',
+        dataIndex: 'c2h2_ave',
+        key: 'c2h2_ave',
+        width: 80,
+        align: 'center',
+      },
+    ],
+  },
+  {
+    title: 'C₂H₄(PPM)',
+    children: [
+      {
+        title: '最大值',
+        dataIndex: 'c2h4_max',
+        key: 'c2h4_max',
+        width: 80,
+        align: 'center',
+      },
+      {
+        title: '平均值',
+        dataIndex: 'c2h4_ave',
+        key: 'c2h4_ave',
+        width: 80,
+        align: 'center',
+      },
+    ],
+  },
+  {
+    title: '煤自燃阶段',
+    dataIndex: 'internalFireWarnLevel',
+    width: 100,
+    align: 'center',
+  },
+  {
+    title: '操作',
+    dataIndex: 'action',
+    width: 100,
+    align: 'center',
+  },
+];

+ 77 - 1
src/views/vent/bundle/bundleMonitorTable/index.vue

@@ -50,7 +50,7 @@
 
 <script setup lang="ts">
 import { ref, onMounted, computed, shallowRef, reactive, nextTick } from 'vue';
-import { columns, Hjtcolumns, Bdcolumns, Bltcolumns, Sgtcolumns, Yjlcolumns, Cctrkcolumns, wlmlcolumns } from './bundle-table.data';
+import { columns, Hjtcolumns, Bdcolumns, Bltcolumns, Sgtcolumns, Yjlcolumns, Cctrkcolumns, wlmlcolumns, Cctkcolumns } from './bundle-table.data';
 import { getBundleInfoList, getAllFileList, getAllFileListById } from './bundle-table.api';
 import customHeader from '/@/components/vent/customHeader.vue';
 // import { blastDelta } from './modal/blastDelta.vue';
@@ -98,6 +98,8 @@ const computedColumns = computed(() => {
       return Cctrkcolumns; // 寸草塔二矿对应的列配置
     case 'sdmtjtwlmlmk':
       return wlmlcolumns; // 乌兰木伦对应的列配置
+    case 'sdmtjtcctmk':
+      return Cctkcolumns; // 乌兰木伦对应的列配置
     default:
       return columns; // 默认情况下返回的列配置
   }
@@ -696,6 +698,80 @@ function updateChart(data: any) {
             type: 'bar',
           },
         ];
+      case 'sdmtjtcctmk':
+        return [
+          {
+            name: 'O₂最小值',
+            data: o2MinValues,
+            type: 'bar',
+          },
+          {
+            name: 'O₂平均值',
+            data: o2AveValues,
+            type: 'bar',
+          },
+          {
+            name: 'N₂最大值',
+            data: n2MaxValues,
+            type: 'bar',
+          },
+          {
+            name: 'N₂平均值',
+            data: n2AveValues,
+            type: 'bar',
+          },
+
+          {
+            name: 'CO最大值',
+            data: coMaxValues,
+            type: 'bar',
+          },
+          {
+            name: 'CO平均值',
+            data: coAveValues,
+            type: 'bar',
+          },
+          {
+            name: 'CO₂最大值',
+            data: co2MaxValues,
+            type: 'bar',
+          },
+          {
+            name: 'CO₂平均值',
+            data: co2AveValues,
+            type: 'bar',
+          },
+          {
+            name: 'CH₄最大值',
+            data: ch4MaxValues,
+            type: 'bar',
+          },
+          {
+            name: 'CH₄平均值',
+            data: ch4AveValues,
+            type: 'bar',
+          },
+          {
+            name: 'C₂H₄最大值',
+            data: c2h4MaxValues,
+            type: 'bar',
+          },
+          {
+            name: 'C₂H₄平均值',
+            data: c2h4AveValues,
+            type: 'bar',
+          },
+          {
+            name: 'C₂H₂最大值',
+            data: c2h2MaxValues,
+            type: 'bar',
+          },
+          {
+            name: 'C₂H₂平均值',
+            data: c2h2AveValues,
+            type: 'bar',
+          },
+        ];
       default:
         return [
           {

+ 58 - 0
src/views/vent/dust/dustMonitorTable/dust-table.data.ts

@@ -761,6 +761,64 @@ export const Wlmlcolumns = [
     align: 'center',
   },
 ];
+export const Cctkcolumns = [
+  {
+    title: '序号',
+    width: 60,
+    align: 'center',
+    dataIndex: 'xh',
+  },
+  {
+    title: '测尘地点',
+    dataIndex: 'jcdd',
+    key: 'jcdd',
+    width: 150,
+    align: 'center',
+  },
+
+  {
+    title: '作业环境(工序)',
+    dataIndex: 'zyhj',
+    key: 'zyhj',
+    width: 80,
+    align: 'center',
+  },
+  {
+    title: '粉尘浓度(mg/m³)',
+    width: 100,
+    align: 'center',
+    children: [
+      {
+        title: '总尘',
+        dataIndex: 'sc_zcds',
+        key: 'sc_zcds',
+        width: 80,
+        align: 'center',
+      },
+      {
+        title: '呼尘',
+        dataIndex: 'sc_hcds',
+        key: 'sc_hcds',
+        width: 80,
+        align: 'center',
+      },
+    ],
+  },
+  {
+    title: '测尘员',
+    dataIndex: 'ccy',
+    key: 'ccy',
+    width: 80,
+    align: 'center',
+  },
+  {
+    title: '备注',
+    dataIndex: 'smark',
+    key: 'smark',
+    width: 80,
+    align: 'center',
+  },
+];
 //监测字段
 export const fieldMapping = {
   sc_zcds: '总尘-作业工序-生产(短时间监测浓度,mg/m³)',

+ 11 - 0
src/views/vent/dust/dustMonitorTable/index.vue

@@ -73,6 +73,7 @@ import {
   Yjlcolumns,
   Wlmlcolumns,
   Cctrkcolumns,
+  Cctkcolumns,
   dataColumns,
   dataDltColumns,
   dataSwColumns,
@@ -145,6 +146,8 @@ const computedColumns = computed(() => {
       return Cctrkcolumns; // 寸草塔二矿对应的列配置
     case 'sdmtjtwlmlmk':
       return Wlmlcolumns; // 乌兰木伦对应的列配置
+    case 'sdmtjtcctmk':
+      return Wlmlcolumns; // 寸草塔一矿对应的列配置
     default:
       return columns; // 默认情况下返回的列配置
   }
@@ -171,6 +174,8 @@ const AllDataComputedColumns = computed(() => {
       return AllDataCctrkColumns; // 寸草塔二矿对应的列配置
     case 'sdmtjtwlmlmk':
       return AllDataWlmlColumns; // 乌兰木伦对应的列配置
+    case 'sdmtjtcctmk':
+      return AllDataWlmlColumns; // 寸草塔一矿对应的列配置
     default:
       return AllDataColumns; // 默认情况下返回的列配置
   }
@@ -197,6 +202,8 @@ const DataComputedColumns = computed(() => {
       return dataCctrkColumns; // 寸草塔二矿对应的列配置
     case 'sdmtjtwlmlmk':
       return dataWlmlColumns; // 乌兰木伦对应的列配置
+    case 'sdmtjtcctmk':
+      return dataWlmlColumns; // 寸草塔一矿对应的列配置
     default:
       return dataColumns; // 默认情况下返回的列配置
   }
@@ -400,6 +407,8 @@ function processTableData(data: any) {
         return CctrkMaxValues; // 寸草塔二矿对应的列配置
       case 'sdmtjtwlmlmk':
         return WlmlMaxValues; // 乌兰木伦对应的列配置
+      case 'sdmtjtcctmk':
+        return WlmlMaxValues; // 寸草塔一矿对应的列配置
       default:
         return maxValues; // 默认情况下返回的列配置
     }
@@ -569,6 +578,8 @@ function processTableData(data: any) {
         return overallCctrkMaxValues; // 寸草塔二矿对应的列配置
       case 'sdmtjtwlmlmk':
         return overallWlmlMaxValues; // 乌兰木伦对应的列配置
+      case 'sdmtjtcctmk':
+        return overallWlmlMaxValues; // 寸草塔一矿对应的列配置
       default:
         return overallMaxValues; // 默认情况下返回的列配置
     }