Authored by lzhy

导出列表增加字段

... ... @@ -166,10 +166,10 @@ export default function() {
},
{
title: '提现成功日期',
key: 'createTime',
key: 'withdrawTime',
align: 'center',
render(h, params) {
const time = moment.unix(params.row.createTime);
const time = moment.unix(params.row.withdrawTime);
return (
<div>
<div>{time.format('YYYY/MM/DD')}</div>
... ...
... ... @@ -165,7 +165,7 @@ const exportExcelConfs = {
'withdrawServiceAmount',
'serviceAmount',
'statusName',
'createTime',
'withdrawTime',
],
},
},
... ... @@ -195,7 +195,7 @@ const exportExcelConfs = {
type: 'string',
},
{
caption: '商家实收',
caption: '运费',
type: 'number',
},
{
... ... @@ -203,6 +203,10 @@ const exportExcelConfs = {
type: 'number',
},
{
caption: '商家实收',
type: 'number',
},
{
caption: '提现状态',
type: 'string',
},
... ... @@ -217,8 +221,9 @@ const exportExcelConfs = {
'orderCode',
'productName',
'clearingType',
'realIncome',
'freightAmount',
'withdrawServiceAmount',
'realIncome',
'statusName',
'withdrawTime',
],
... ...