123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- import { BasicColumn } from '/@/components/Table';
- export const columns: BasicColumn[] = [
- {
- title: '序号',
- width: 60,
- align: 'center',
- dataIndex: 'xh',
- key: 'xh',
- },
- {
- title: '测点名称',
- dataIndex: 'jcdd',
- key: 'jcdd',
- width: 130,
- align: 'center',
- },
- {
- title: '分析次数',
- dataIndex: 'fxcs',
- key: 'fxcs',
- width: 60,
- align: 'center',
- },
- {
- title: 'CO(PPM)',
- children: [
- {
- title: '最大值',
- dataIndex: 'co_max',
- key: 'co_max',
- width: 80,
- align: 'center',
- },
- {
- title: '平均值',
- dataIndex: 'co_ave',
- key: 'co_ave',
- width: 80,
- align: 'center',
- },
- ],
- },
- {
- title: 'CO2(%)',
- children: [
- {
- title: '最大值',
- dataIndex: 'co2_max',
- key: 'co2_max',
- width: 80,
- align: 'center',
- },
- {
- title: '平均值',
- dataIndex: 'co2_ave',
- key: 'co2_ave',
- width: 80,
- align: 'center',
- },
- ],
- },
- {
- title: 'O2(%)',
- children: [
- {
- title: '最小值',
- dataIndex: 'o2_min',
- key: 'o2_min',
- width: 80,
- align: 'center',
- },
- {
- title: '平均值',
- dataIndex: 'o2_ave',
- key: 'o2_ave',
- width: 80,
- align: 'center',
- },
- ],
- },
- {
- title: 'CH4(%)',
- children: [
- {
- title: '最大值',
- dataIndex: 'ch4_max',
- key: 'ch4_max',
- width: 80,
- align: 'center',
- },
- {
- title: '平均值',
- dataIndex: 'ch4_ave',
- key: 'ch4_ave',
- width: 80,
- align: 'center',
- },
- ],
- },
- {
- title: 'C2H2(PPM)',
- children: [
- {
- title: '最大值',
- dataIndex: 'c2h2_max',
- key: 'c2h2_max',
- width: 80,
- align: 'center',
- },
- {
- title: '平均值',
- dataIndex: 'c2h2_ave',
- key: 'c2h2_ave',
- width: 80,
- align: 'center',
- },
- ],
- },
- {
- title: 'C2H4(PPM)',
- children: [
- {
- title: '最大值',
- dataIndex: 'c2h4_max',
- key: 'c2h4_max',
- width: 80,
- align: 'center',
- },
- {
- title: '平均值',
- dataIndex: 'c2h4_ave',
- key: 'c2h4_ave',
- width: 80,
- align: 'center',
- },
- ],
- },
- {
- title: '操作',
- dataIndex: 'action',
- width: 100,
- align: 'center',
- },
- ];
|