Files
SaaS-lib/hx-ai-intelligent/src/view/carbonEmissionManage/carbonInventoryCheck/config.ts

42 lines
750 B
TypeScript
Raw Normal View History

2024-07-22 15:25:41 +08:00
// 凭证弹窗表头
export const voucherColumns = [
{
title: '序号',
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',
},
{
title: '排放环节',
className: 'emissionProcess',
dataIndex: 'emissionProcess',
},
{
title: '数据来源',
className: 'dataSources',
dataIndex: 'dataSources',
},
];