Browse Source

粉尘报表修改

bobo04052021@163.com 2 months ago
parent
commit
0d22f1cb1c

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

@@ -176,25 +176,6 @@ export const columns: BasicColumn[] = [
     ],
   },
   {
-    title: 'NO₂(PPM)',
-    children: [
-      {
-        title: '最大值',
-        dataIndex: 'no2_max',
-        key: 'no2_max',
-        width: 80,
-        align: 'center',
-      },
-      {
-        title: '平均值',
-        dataIndex: 'no2_ave',
-        key: 'no2_ave',
-        width: 80,
-        align: 'center',
-      },
-    ],
-  },
-  {
     title: '煤自燃阶段',
     dataIndex: 'internalFireWarnLevel',
     width: 100,

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

@@ -214,6 +214,13 @@ export const Swcolumns = [
     customRender: ({ index }: { index: number }) => `${index + 1}`,
   },
   {
+    title: '班次',
+    dataIndex: 'class',
+    key: 'class',
+    width: 100,
+    align: 'center',
+  },
+  {
     title: '工作场所',
     dataIndex: 'gzcs',
     key: 'gzcs',

+ 50 - 0
src/views/vent/monitorManager/comment/comment.data.ts

@@ -376,6 +376,56 @@ export const dsutDltColumns: BasicColumn[] = [
     align: 'center',
   },
 ];
+export const dustSwColumns: BasicColumn[] = [
+  {
+    title: '序号',
+    width: 60,
+    align: 'center',
+    customRender: ({ index }: { index: number }) => `${index + 1}`,
+  },
+  {
+    title: '班次',
+    dataIndex: 'class',
+    key: 'class',
+    width: 100,
+    align: 'center',
+  },
+  {
+    title: '工作场所',
+    dataIndex: 'gzcs',
+    key: 'gzcs',
+    width: 100,
+    align: 'center',
+  },
+  {
+    title: '监测地点',
+    dataIndex: 'jcdd',
+    key: 'jcdd',
+    width: 100,
+    align: 'center',
+  },
+  {
+    title: '粉尘种类',
+    dataIndex: 'fczl',
+    key: 'fczl',
+    width: 80,
+    align: 'center',
+  },
+  {
+    title: '总尘(时间加权平均浓度,单位:mg/m³)',
+    dataIndex: 'zcjqpj',
+    key: 'zcjqpj',
+    width: 100,
+    align: 'center',
+  },
+  {
+    title: '呼尘(时间加权平均浓度,单位:mg/m³)',
+    dataIndex: 'hcjqpj',
+    key: 'hcjqpj',
+    width: 100,
+    align: 'center',
+  },
+];
 export const bundleColumns: BasicColumn[] = [
   {
     title: '序号',

+ 18 - 4
src/views/vent/monitorManager/comment/dustMonitorTable.vue

@@ -36,8 +36,9 @@
 
 <script setup lang="ts">
 import { ref, onMounted, reactive, computed, watch, nextTick } from 'vue';
-import { dsutColumns, dsutDltColumns } from './comment.data';
+import { dsutColumns, dsutDltColumns, dustSwColumns } from './comment.data';
 import { getInfoList, getAllFileList } from './comment.api';
+import { useGlobSetting } from '/@/hooks/setting';
 const emit = defineEmits(['locate']);
 const props = defineProps({
   isShowAction: {
@@ -56,6 +57,7 @@ let selectedWorkplace = ref<string | null>(null);
 let DefaultValue = ref<string | null>(null);
 let createBy = ref<any[]>([]);
 let createTime = ref<any[]>([]);
+const { sysOrgCode } = useGlobSetting();
 let formSearch = reactive({
   pageNum: 1,
   pageSize: 1000,
@@ -67,15 +69,27 @@ watch(
   () => props.isShowAction,
   (value) => {
     if (value) {
-      dsutDltColumns.push({
+      const computedColumns = computed(() => {
+        switch (sysOrgCode) {
+          case 'sdmtjtbetmk':
+            return dsutColumns; // 布尔台对应的列配置
+          case 'sdmtjtdltmk':
+            return dsutDltColumns; // 大柳塔对应的列配置
+          case 'sdmtjtswmk':
+            return dustSwColumns; // 上湾对应的列配置
+          default:
+            return dsutColumns; // 默认情况下返回的列配置
+        }
+      });
+      computedColumns.value.push({
         title: '操作',
         dataIndex: 'operation',
         width: 100,
         align: 'center',
       });
-      if (columns.value.length == 0) columns.value = dsutDltColumns;
+      if (columns.value.length == 0) columns.value = computedColumns.value;
     } else {
-      if (columns.value.length == 0) columns.value = dsutDltColumns;
+      if (columns.value.length == 0) columns.value = computedColumns.value;
     }
   },
   { immediate: true }