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:180, align: 'center', }, { title: 'O₂最小值(%)', dataIndex: 'o2_min', key: 'o2_min', align: 'center', }, { title: 'O₂平均值(%)', dataIndex: 'o2_ave', key: 'o2_ave', align: 'center', }, { title: 'CO最大值(ppm)', dataIndex: 'co_max', key: 'co_max', align: 'center', }, { title: 'CO平均值(ppm)', dataIndex: 'co_ave', key: 'co_ave', align: 'center', }, { title: 'CO₂最大值(%)', dataIndex: 'co2_max', key: 'co2_max', align: 'center', }, { title: 'CO₂平均值(%)', dataIndex: 'co2_ave', key: 'co2_ave', align: 'center', }, { title: 'CH₄最大值(%)', dataIndex: 'ch4_max', key: 'ch4_max', align: 'center', }, { title: 'CH₄平均值(%)', dataIndex: 'ch4_ave', key: 'ch4_ave', align: 'center', }, { title: 'C₂H₄最大值(ppm)', dataIndex: 'c2h4_max', key: 'c2h4_max', align: 'center', }, { title: 'C₂H₄平均值(ppm)', dataIndex: 'c2h4_ave', key: 'c2h4_ave', align: 'center', }, { title: 'C₂H₂最大值(ppm)', dataIndex: 'c2h2_max', key: 'c2h2_max', align: 'center', }, { title: 'C₂H₂平均值(ppm)', dataIndex: 'c2h2_ave', key: 'c2h2_ave', align: 'center', }, { title: '分析次数', dataIndex: 'fxcs', key: 'fxcs', align: 'center', }, ]; //分页参数 export const pagination = { current: 1, // 当前页码 pageSize: 15, // 每页显示条数 total: 0, // 总条目数,后端返回 // showTotal: (total, range) => `${range[0]}-${range[1]} 条,总共 ${total} 条`, // 分页右下角显示信息 showSizeChanger: true, // 是否可改变每页显示条数 pageSizeOptions: ['10','15', '20','25', '50'], // 可选的每页显示条数 };