| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336 |
- import { BasicColumn } from '/@/components/Table';
- export const columnsType: BasicColumn[] = [
- {
- title: '序号',
- width: 60,
- align: 'center',
- customRender: ({ index }: { index: number }) => `${index + 1}`
- },
- {
- title: '监测地点',
- dataIndex: 'jcdd',
- key: 'jcdd',
- width:260,
- align: 'center',
- },
- {
- title: '检测次数',
- dataIndex: 'checkNum',
- key: 'checkNum',
- align: 'center',
- },
- {
- title: 'O₂(%)',
- dataIndex: 'o2',
- key: 'o2',
- align: 'center',
- },
-
- {
- title: 'CO(ppm)',
- dataIndex: 'co',
- key: 'co',
- align: 'center',
- },
-
- {
- title: 'CO₂(%)',
- dataIndex: 'co2',
- key: 'co2',
- align: 'center',
- },
-
- {
- title: 'CH₄(%)',
- dataIndex: 'ch4',
- key: 'ch4',
- align: 'center',
- },
- {
- title: '巡检员',
- dataIndex: 'checkPerson',
- key: 'checkPerson',
- align: 'center',
- },
- // {
- // title: '检查时间',
- // dataIndex: 'checkTime',
- // key: 'checkTime',
- // align: 'center',
- // },
- ];
- export const columnsGas1: BasicColumn[] = [
- {
- title: '序号',
- width: 60,
- align: 'center',
- customRender: ({ index }: { index: number }) => `${index + 1}`
- },
- {
- title: '监测地点',
- dataIndex: 'jcdd',
- key: 'jcdd',
- width:180,
- align: 'center',
- },
- {
- title: '夜班',
- children: [
- {
- title: 'CH₄(%)',
- dataIndex: 'ch4Night',
- key: 'ch4Night',
- align: 'center',
- },
- {
- title: 'CO₂(%)',
- dataIndex: 'co2Night',
- key: 'co2Night',
- align: 'center',
- },
- {
- title: 'CO(ppm)',
- dataIndex: 'coNight',
- key: 'coNight',
- align: 'center',
- },
- {
- title: 'O₂(%)',
- dataIndex: 'o2Night',
- key: 'o2Night',
- align: 'center',
- },
- {
- title: 'T(°C)',
- dataIndex: 'tNight',
- key: 'tNight',
- align: 'center',
- },
- ]
- },
- {
- title: '早班',
- children: [
- {
- title: 'CH₄(%)',
- dataIndex: 'ch4Early',
- key: 'ch4Early',
- align: 'center',
- },
- {
- title: 'CO₂(%)',
- dataIndex: 'co2Early',
- key: 'co2Early',
- align: 'center',
- },
- {
- title: 'CO(ppm)',
- dataIndex: 'coEarly',
- key: 'coEarly',
- align: 'center',
- },
- {
- title: 'O₂(%)',
- dataIndex: 'o2Early',
- key: 'o2Early',
- align: 'center',
- },
- {
- title: 'T(°C)',
- dataIndex: 'tEarly',
- key: 'tEarly',
- align: 'center',
- },
- ]
- },
- {
- title: '中班',
- children: [
- {
- title: 'CH₄(%)',
- dataIndex: 'ch4Noon',
- key: 'ch4Noon',
- align: 'center',
- },
- {
- title: 'CO₂(%)',
- dataIndex: 'co2Noon',
- key: 'co2Noon',
- align: 'center',
- },
- {
- title: 'CO(ppm)',
- dataIndex: 'coNoon',
- key: 'coNoon',
- align: 'center',
- },
- {
- title: 'O₂(%)',
- dataIndex: 'o2Noon',
- key: 'o2Noon',
- align: 'center',
- },
- {
- title: 'T(°C)',
- dataIndex: 'tNoon',
- key: 'tNoon',
- align: 'center',
- },
- ]
- },
-
- ];
- export const columnsGas2: BasicColumn[] = [
- {
- title: '序号',
- width: 60,
- align: 'center',
- customRender: ({ index }: { index: number }) => `${index + 1}`
- },
- {
- title: '监测地点',
- dataIndex: 'jcdd',
- key: 'jcdd',
- width:130,
- align: 'center',
- },
- {
- title: '煤层',
- dataIndex: 'mc',
- width:80,
- key: 'mc',
- align: 'center',
- },
- {
- title: '夜班',
- children: [
- {
- title: 'CH₄(%)',
- dataIndex: 'ch4Night',
- key: 'ch4Night',
- align: 'center',
- },
- {
- title: 'CO₂(%)',
- dataIndex: 'co2Night',
- key: 'co2Night',
- align: 'center',
- },
- {
- title: 'CO(ppm)',
- dataIndex: 'coNight',
- key: 'coNight',
- width:80,
- align: 'center',
- },
- {
- title: 'O₂(%)',
- dataIndex: 'o2Night',
- key: 'o2Night',
- align: 'center',
- },
- {
- title: 'T(°C)',
- dataIndex: 'tNight',
- key: 'tNight',
- align: 'center',
- },
- {
- title: '巡检员',
- dataIndex: 'checkPersonNight',
- key: 'checkPersonNight',
- align: 'center',
- },
- ]
- },
- {
- title: '早班',
- children: [
- {
- title: 'CH₄(%)',
- dataIndex: 'ch4Early',
- key: 'ch4Early',
- align: 'center',
- },
- {
- title: 'CO₂(%)',
- dataIndex: 'co2Early',
- key: 'co2Early',
- align: 'center',
- },
- {
- title: 'CO(ppm)',
- dataIndex: 'coEarly',
- key: 'coEarly',
- width:80,
- align: 'center',
- },
- {
- title: 'O₂(%)',
- dataIndex: 'o2Early',
- key: 'o2Early',
- align: 'center',
- },
- {
- title: 'T(°C)',
- dataIndex: 'tEarly',
- key: 'tEarly',
- align: 'center',
- },
- {
- title: '巡检员',
- dataIndex: 'checkPersonEarly',
- key: 'checkPersonEarly',
- align: 'center',
- },
- ]
- },
- {
- title: '中班',
- children: [
- {
- title: 'CH₄(%)',
- dataIndex: 'ch4Noon',
- key: 'ch4Noon',
- align: 'center',
- },
- {
- title: 'CO₂(%)',
- dataIndex: 'co2Noon',
- key: 'co2Noon',
- align: 'center',
- },
- {
- title: 'CO(ppm)',
- dataIndex: 'coNoon',
- key: 'coNoon',
- width:80,
- align: 'center',
- },
- {
- title: 'O₂(%)',
- dataIndex: 'o2Noon',
- key: 'o2Noon',
- align: 'center',
- },
- {
- title: 'T(°C)',
- dataIndex: 'tNoon',
- key: 'tNoon',
- align: 'center',
- },
- {
- title: '巡检员',
- dataIndex: 'checkPersonNoon',
- key: 'checkPersonNoon',
- align: 'center',
- },
- ]
- },
-
- ];
|