Browse Source

寸草塔,乌兰木伦瓦斯日报表提交

lxh 3 weeks ago
parent
commit
c5e3f8d678

+ 126 - 0
src/views/vent/gas/gasReportInspect/gasReportInspect.data.ts

@@ -185,6 +185,132 @@ export const columnCctr: BasicColumn[] = [
         align: 'center',
     },
 ];
+//寸草塔矿
+export const columnCct: BasicColumn[] = [
+    {
+        title: '序号',
+        width: 60,
+        align: 'center',
+        customRender: ({ index }: { index: number }) => `${index + 1}`
+    },
+    {
+        title: '检查地点',
+        dataIndex: 'jcdd',
+        key: 'jcdd',
+        align: 'center',
+    }, 
+    {
+        title: '检查次数',
+        dataIndex: 'checkNum',
+        key: 'checkNum',
+        align: 'center',
+    }, 
+    {
+        title: '检查时间',
+        dataIndex: 'jcsj',
+        key: 'jcsj',
+        align: 'center',
+    }, 
+    {
+        title: 'CH₄(%)',
+        children:[
+            {
+                title: '光瓦测量值(%)',
+                dataIndex: 'ch4gw',
+                key: 'ch4gw',
+                align: 'center',
+            }, 
+            {
+                title: '便携仪/传感器测量值(%)',
+                dataIndex: 'ch4bxy',
+                key: 'ch4bxy',
+                align: 'center',
+            }, 
+        ]
+    },
+    {
+        title: 'CO₂(%)',
+        dataIndex: 'co2',
+        key: 'co2',
+        align: 'center',
+    },
+    {
+        title: 'CO(ppm)',
+        dataIndex: 'co',
+        key: 'co',
+        align: 'center',
+    },
+    {
+        title: 'O₂(%)',
+        dataIndex: 'o2',
+        key: 'o2',
+        align: 'center',
+    },
+    {
+        title: 'T(°C)',
+        dataIndex: 't',
+        key: 't',
+        align: 'center',
+    },
+    {
+        title: '瓦检员',
+        dataIndex: 'checkPerson',
+        key: 'checkPerson',
+        align: 'center',
+    },  
+];
+//乌兰木伦
+export const columnWlml: BasicColumn[] = [
+    {
+        title: '序号',
+        width: 60,
+        align: 'center',
+        customRender: ({ index }: { index: number }) => `${index + 1}`
+    },
+    {
+        title: '检查地点',
+        dataIndex: 'jcdd',
+        key: 'jcdd',
+        width:260,
+        align: 'center',
+    }, 
+    {
+        title: 'CH₄(%)',
+        dataIndex: 'ch4',
+        key: 'ch4',
+        align: 'center',
+    },
+    {
+        title: 'CO₂(%)',
+        dataIndex: 'co2',
+        key: 'co2',
+        align: 'center',
+    },
+    {
+        title: 'CO(ppm)',
+        dataIndex: 'co',
+        key: 'co',
+        align: 'center',
+    },
+    {
+        title: 'O₂(%)',
+        dataIndex: 'o2',
+        key: 'o2',
+        align: 'center',
+    },
+    {
+        title: 'T(°C)',
+        dataIndex: 't',
+        key: 't',
+        align: 'center',
+    },
+    {
+        title: '检查人',
+        dataIndex: 'checkPerson',
+        key: 'checkPerson',
+        align: 'center',
+    },  
+];
 //榆家梁
 export const columnYjl: BasicColumn[] = [
     {

+ 2 - 2
src/views/vent/gas/gasReportInspect/index-time.vue

@@ -36,7 +36,7 @@ import { ref, nextTick, reactive, onMounted } from 'vue';
 import fileSystem from './comment/common/cameraTree.vue';
 import { SvgIcon } from '/@/components/Icon';
 import treeIcon from './comment/common/Icon/treeIcon.vue';
-import { columnsType,columnBlt,columnBd,columnSgt,columnCctr,columnYjl} from './gasReportInspect.data';
+import { columnsType,columnBlt,columnBd,columnSgt,columnCctr,columnYjl,columnCct,columnWlml} from './gasReportInspect.data';
 import { queryReportData } from './gasReportInspect.api';
 import { useGlobSetting } from '/@/hooks/setting';
 
@@ -51,7 +51,7 @@ let selected = reactive<any>({
     title: '',
     isFolder: false,
 });
-let columns=glob.sysOrgCode=='sdmtjtbltmk' ? columnBlt : glob.sysOrgCode=='sdmtjtbdmk' ? columnBd :  glob.sysOrgCode=='sdmtjtsgtmk' ? columnSgt : glob.sysOrgCode=='sdmtjtcctrk' ? columnCctr : glob.sysOrgCode=='sdmtjtyjlmk' ? columnYjl : columnsType
+let columns=glob.sysOrgCode=='sdmtjtbltmk' ? columnBlt : glob.sysOrgCode=='sdmtjtbdmk' ? columnBd :  glob.sysOrgCode=='sdmtjtsgtmk' ? columnSgt : glob.sysOrgCode=='sdmtjtcctrk' ? columnCctr : glob.sysOrgCode=='sdmtjtyjlmk' ? columnYjl : glob.sysOrgCode=='sdmtjtcctmk' ? columnCct : glob.sysOrgCode=='sdmtjtwlmlmk' ? columnWlml : columnsType
 let tableData = ref<any[]>([])
 let handlerToggle = (param) => {
     gasType.value = param