Browse Source

保德粉尘报表分析修改

bobo04052021@163.com 1 month ago
parent
commit
4b45a2d0ab

+ 119 - 2
src/views/vent/dust/dustMonitorTable/dust-table.data.ts

@@ -376,6 +376,57 @@ export const Hjtcolumns = [
     align: 'center',
   },
 ];
+export const Bdcolumns = [
+  {
+    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: 'qc',
+        key: 'qc',
+        width: 80,
+        align: 'center',
+      },
+      {
+        title: '呼尘',
+        dataIndex: 'hc',
+        key: 'hc',
+        width: 80,
+        align: 'center',
+      },
+    ],
+  },
+  {
+    title: '备注',
+    dataIndex: 'smark',
+    key: 'smark',
+    width: 80,
+    align: 'center',
+  },
+];
+//监测字段
 export const fieldMapping = {
   sc_zcds: '总尘-作业工序-生产(短时间监测浓度,mg/m³)',
   jx_zcds: '总尘-作业工序-检修(短时间监测浓度,mg/m³)',
@@ -408,7 +459,11 @@ export const fieldHjtMapping = {
   zcjqpj: '总尘(时间加权平均浓度,mg/m³)',
   hcjqpj: '呼尘(时间加权平均浓度,mg/m³)',
 };
-
+export const fieldBdMapping = {
+  qc: '总尘(粉尘浓度,mg/m³)',
+  hc: '呼尘(粉尘浓度,mg/m³)',
+};
+// 检测地点
 export const dataColumns = [
   {
     title: '监测字段',
@@ -540,7 +595,38 @@ export const dataHjtColumns = [
     key: 'fczl',
   },
 ];
-
+export const dataBdColumns = [
+  {
+    title: '监测字段',
+    align: 'center',
+    dataIndex: 'key',
+    key: 'key',
+    width: 100,
+    customRender: ({ text }) => fieldBdMapping[text] || text,
+  },
+  {
+    title: '最大值',
+    dataIndex: 'value',
+    align: 'center',
+    width: 100,
+    key: 'value',
+  },
+  {
+    width: 100,
+    align: 'center',
+    title: '监测地点',
+    dataIndex: 'jcdd',
+    key: 'jcdd',
+  },
+  {
+    width: 100,
+    align: 'center',
+    title: '作业环境(工序)',
+    dataIndex: 'zyhj',
+    key: 'zyhj',
+  },
+];
+// 当日情况粉尘情况分析
 export const AllDataColumns = [
   {
     title: '监测字段',
@@ -686,3 +772,34 @@ export const AllDataHjtColumns = [
     key: 'fczl',
   },
 ];
+export const AllDataBdColumns = [
+  {
+    title: '监测字段',
+    align: 'center',
+    dataIndex: 'key',
+    key: 'key',
+    width: 100,
+    customRender: ({ text }) => fieldBdMapping[text] || text,
+  },
+  {
+    title: '最大值',
+    dataIndex: 'value',
+    align: 'center',
+    width: 100,
+    key: 'value',
+  },
+  {
+    width: 100,
+    align: 'center',
+    title: '监测地点',
+    dataIndex: 'jcdd',
+    key: 'jcdd',
+  },
+  {
+    width: 100,
+    align: 'center',
+    title: '作业环境(工序)',
+    dataIndex: 'zyhj',
+    key: 'zyhj',
+  },
+];

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

@@ -67,14 +67,17 @@ import {
   Dltcolumns,
   Swcolumns,
   Hjtcolumns,
+  Bdcolumns,
   dataColumns,
   dataDltColumns,
   dataSwColumns,
   dataHjtColumns,
+  dataBdColumns,
   AllDataColumns,
   AllDataDltColumns,
   AllDataSwColumns,
   AllDataHjtColumns,
+  AllDataBdColumns,
 } from './dust-table.data';
 import { getDustInfoList, getAllFileList, getAllFileListById } from './dsut-table.api';
 import customHeader from '/@/components/vent/customHeader.vue';
@@ -115,6 +118,8 @@ const computedColumns = computed(() => {
       return Swcolumns; // 上湾对应的列配置
     case 'sdmtjtdltmkhjtj':
       return Hjtcolumns; // 活鸡兔对应的列配置
+    case 'sdmtjtBdmk':
+      return Bdcolumns; // 保德对应的列配置
     default:
       return columns; // 默认情况下返回的列配置
   }
@@ -129,6 +134,8 @@ const AllDataComputedColumns = computed(() => {
       return AllDataSwColumns; // 上湾对应的列配置
     case 'sdmtjtdltmkhjtj':
       return AllDataHjtColumns; // 活鸡兔对应的列配置
+    case 'sdmtjtBdmk':
+      return AllDataBdColumns; // 保德对应的列配置
     default:
       return AllDataColumns; // 默认情况下返回的列配置
   }
@@ -143,6 +150,8 @@ const DataComputedColumns = computed(() => {
       return dataSwColumns; // 上湾对应的列配置
     case 'sdmtjtdltmkhjtj':
       return dataHjtColumns; // 活鸡兔对应的列配置
+    case 'sdmtjtBdmk':
+      return dataBdColumns; // 保德对应的列配置
     default:
       return dataColumns; // 默认情况下返回的列配置
   }
@@ -219,6 +228,10 @@ function processTableData(data: any) {
       { key: 'zcjqpj', value: -Infinity, gz: '', jcdd: '', fczl: '', gzcs: workplace },
       { key: 'hcjqpj', value: -Infinity, gz: '', jcdd: '', fczl: '', gzcs: workplace },
     ];
+    const BdMaxValues = [
+      { key: 'qc', value: -Infinity, gz: '', jcdd: '', fczl: '', gzcs: workplace },
+      { key: 'hc', value: -Infinity, gz: '', jcdd: '', fczl: '', gzcs: workplace },
+    ];
     items.forEach((item: any) => {
       maxValues.forEach((maxValue) => {
         if (item[maxValue.key] > maxValue.value) {
@@ -255,6 +268,15 @@ function processTableData(data: any) {
           maxValue.gzcs = item.gzcs;
         }
       });
+      BdMaxValues.forEach((maxValue) => {
+        if (item[maxValue.key] > maxValue.value) {
+          maxValue.value = item[maxValue.key];
+          maxValue.gz = item.gz;
+          maxValue.jcdd = item.jcdd;
+          maxValue.fczl = item.fczl;
+          maxValue.gzcs = item.gzcs;
+        }
+      });
     });
     switch (sysOrgCode) {
       case 'sdmtjtbetmk':
@@ -265,6 +287,8 @@ function processTableData(data: any) {
         return SwMaxValues; // 上湾对应的列配置
       case 'sdmtjtdltmkhjtj':
         return HjtMaxValues; // 活鸡兔对应的列配置
+      case 'sdmtjtBdmk':
+        return BdMaxValues; // 保德对应的列配置
       default:
         return maxValues; // 默认情况下返回的列配置
     }
@@ -308,6 +332,10 @@ function processTableData(data: any) {
     { key: 'zcjqpj', value: -Infinity, gz: '', jcdd: '', fczl: '', gzcs: '' },
     { key: 'hcjqpj', value: -Infinity, gz: '', jcdd: '', fczl: '', gzcs: '' },
   ];
+  const overallBdMaxValues = [
+    { key: 'zcjqpj', value: -Infinity, gz: '', jcdd: '', fczl: '', gzcs: '' },
+    { key: 'hcjqpj', value: -Infinity, gz: '', jcdd: '', fczl: '', gzcs: '' },
+  ];
   data.forEach((item: any) => {
     overallMaxValues.forEach((maxValue) => {
       if (item[maxValue.key] > maxValue.value) {
@@ -345,6 +373,15 @@ function processTableData(data: any) {
         maxValue.gzcs = item.gzcs;
       }
     });
+    overallBdMaxValues.forEach((maxValue) => {
+      if (item[maxValue.key] > maxValue.value) {
+        maxValue.value = item[maxValue.key];
+        maxValue.gz = item.gz;
+        maxValue.jcdd = item.jcdd;
+        maxValue.fczl = item.fczl;
+        maxValue.gzcs = item.gzcs;
+      }
+    });
   });
   AllMaxValues = computed(() => {
     switch (sysOrgCode) {
@@ -356,6 +393,8 @@ function processTableData(data: any) {
         return overallSwMaxValues; // 上湾对应的列配置
       case 'sdmtjtdltmkhjtj':
         return overallHjtMaxValues; // 活鸡兔对应的列配置
+      case 'sdmtjtBdmk':
+        return overallBdMaxValues; // 保德对应的列配置
       default:
         return overallMaxValues; // 默认情况下返回的列配置
     }