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.
 
 
 
 
 
 

74 lines
1.0 KiB

export const tableColumns = [
{
title: '序号',
customRender: (text: any) => {
return text.index + 1;
},
},
{
title: '能源种类',
dataIndex: 'money',
},
{
title: '计量单位',
className: 'column-money',
dataIndex: 'money',
},
{
title: '全年',
dataIndex: 'address',
},
{
title: '1月',
dataIndex: 'address',
},
{
title: '2月',
dataIndex: 'address',
},
{
title: '3月',
dataIndex: 'address',
},
{
title: '4月',
dataIndex: 'address',
},
{
title: '5月',
dataIndex: 'address',
},
{
title: '6月',
dataIndex: 'address',
},
{
title: '7月',
dataIndex: 'address',
},
{
title: '8月',
dataIndex: 'address',
},
{
title: '9月',
dataIndex: 'address',
},
{
title: '10月',
dataIndex: 'address',
},
{
title: '11月',
dataIndex: 'address',
},
{
title: '12月',
dataIndex: 'address',
},
{
title: '操作',
key: 'action',
width: 130
},
];