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', }, ];