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

41 lines
716 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: '日期',
dataIndex: 'age',
key: 'age',
},
{
title: '文件名称',
dataIndex: 'address',
key: 'address 1',
ellipsis: true,
},
];
// 编辑页中表头
export const drawerColumns = [
{
title: '名称',
dataIndex: 'emissionSources',
},
{
title: '因子值',
dataIndex: 'emissionFactors',
},
{
title: '排放环节',
className: 'emissionProcess',
dataIndex: 'emissionProcess',
},
{
title: '数据来源',
className: 'dataSources',
dataIndex: 'dataSources',
},
];