You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
// 凭证弹窗表头
|
|
|
|
export const voucherColumns = [
|
|
|
|
{
|
|
|
|
title: '序号',
|
|
|
|
customRender: (text: any) => {
|
|
|
|
return text.index + 1;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
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',
|
|
|
|
},
|
|
|
|
];
|