123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- import { BasicColumn } from '/@/components/Table';
- export const columns: BasicColumn[] = [
- {
- title: '序号',
- width: 60,
- align: 'center',
- dataIndex: 'xh',
- key: 'xh',
- },
- {
- 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',
- },
- {
- title: '煤自燃阶段',
- dataIndex: 'internalFireWarnLevel',
- width: 100,
- align: 'center',
- },
- {
- title: '操作',
- dataIndex: 'action',
- width: 100,
- align: 'center',
- },
- ];
|