2024-07-22 15:25:41 +08:00
|
|
|
// 凭证弹窗表头
|
|
|
|
|
export const voucherColumns = [
|
|
|
|
|
{
|
|
|
|
|
title: '序号',
|
2024-08-21 15:26:49 +08:00
|
|
|
width: 80,
|
2024-07-22 15:25:41 +08:00
|
|
|
customRender: (text: any) => {
|
|
|
|
|
return text.index + 1;
|
2024-07-18 11:29:52 +08:00
|
|
|
},
|
2024-07-22 15:25:41 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '日期',
|
2024-08-08 15:13:32 +08:00
|
|
|
dataIndex: 'updateTime',
|
|
|
|
|
key: 'updateTime',
|
|
|
|
|
ellipsis: true,
|
2024-07-22 15:25:41 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '文件名称',
|
2024-08-08 15:13:32 +08:00
|
|
|
dataIndex: 'fileName',
|
|
|
|
|
key: 'fileName',
|
2024-07-22 15:25:41 +08:00
|
|
|
ellipsis: true,
|
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
// 编辑页中表头
|
|
|
|
|
export const drawerColumns = [
|
|
|
|
|
{
|
|
|
|
|
title: '名称',
|
|
|
|
|
dataIndex: 'emissionSources',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '因子值',
|
|
|
|
|
dataIndex: 'emissionFactors',
|
2024-08-22 15:27:55 +08:00
|
|
|
key: 'emissionFactors',
|
2024-07-22 15:25:41 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '排放环节',
|
|
|
|
|
className: 'emissionProcess',
|
|
|
|
|
dataIndex: 'emissionProcess',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '数据来源',
|
|
|
|
|
className: 'dataSources',
|
|
|
|
|
dataIndex: 'dataSources',
|
|
|
|
|
},
|
2024-08-21 15:26:49 +08:00
|
|
|
];
|