Browse Source

石圪台瓦斯日报历史详情

lxh 1 month ago
parent
commit
0752fb8d90

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

@@ -59,6 +59,7 @@ export const columnsType: BasicColumn[] = [
     //     align: 'center',
     // },  
 ];
+//宝德
 export const columnBd: BasicColumn[] = [
     {
         title: '序号',
@@ -86,6 +87,59 @@ export const columnBd: BasicColumn[] = [
         align: 'center',
     },
 ];
+//石圪台
+export const columnSgt: 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: '温度(°C)',
+        dataIndex: 't',
+        key: 't',
+        align: 'center',
+    },
+    {
+        title: '瓦检员',
+        dataIndex: 'checkPerson',
+        key: 'checkPerson',
+        align: 'center',
+    },  
+];
+//补连塔
 export const columnBlt: BasicColumn[] = [
     {
         title: '序号',

+ 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} from './gasReportInspect.data';
+import { columnsType,columnBlt,columnBd,columnSgt} 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 :   columnsType
+let columns=glob.sysOrgCode=='sdmtjtbltmk' ? columnBlt : glob.sysOrgCode=='sdmtjtbdmk' ? columnBd :  glob.sysOrgCode=='sdmtjtsgtmk' ? columnSgt :  columnsType
 let tableData = ref<any[]>([])
 let handlerToggle = (param) => {
     gasType.value = param