12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- import { BasicColumn } from '/@/components/Table';
- export const columns: BasicColumn[] = [
- {
- title: '序号',
- width: 60,
- align: 'center',
- dataIndex: 'xh',
- key: 'xh',
- },
- {
- title: '化验编号',
- dataIndex: 'hybh',
- key: 'hybh',
- width: 100,
- align: 'center',
- },
- {
- title: '采样地点',
- dataIndex: 'jcdd',
- key: 'jcdd',
- width: 100,
- align: 'center',
- },
- {
- title: '取样分析时间',
- dataIndex: 'qyfxsj',
- key: 'qyfxsj',
- width: 100,
- align: 'center',
- },
- {
- title: 'O₂(%)',
- dataIndex: 'o2_ave',
- key: 'o2_ave',
- width: 100,
- align: 'center',
- },
- {
- title: 'N₂(%)',
- dataIndex: 'n2_ave',
- key: 'n2_ave',
- width: 100,
- align: 'center',
- },
- {
- title: 'CO(%)',
- dataIndex: 'co_ave',
- key: 'co_ave',
- width: 100,
- align: 'center',
- },
- {
- title: 'CO₂(%)',
- dataIndex: 'co2_ave',
- key: 'co2_ave',
- width: 100,
- align: 'center',
- },
- {
- title: 'CH₄(%)',
- dataIndex: 'ch4_ave',
- key: 'ch4_ave',
- width: 100,
- align: 'center',
- },
- {
- title: 'C2H6(%)',
- dataIndex: 'c2h6_ave',
- key: 'c2h6_ave',
- width: 100,
- align: 'center',
- },
- {
- title: 'C₂H₄(%)',
- dataIndex: 'c2h4_ave',
- key: 'c2h4_ave',
- width: 100,
- align: 'center',
- },
- {
- title: 'C₂H₂(%)',
- dataIndex: 'c2h2_ave',
- key: 'c2h2_ave',
- width: 100,
- align: 'center',
- },
- {
- title: '总组分含量',
- dataIndex: 'zzfhl_ave',
- key: 'zzfhl_ave',
- width: 100,
- align: 'center',
- },
- ];
|