Authored by lzhy

导出列表增加字段

@@ -166,10 +166,10 @@ export default function() { @@ -166,10 +166,10 @@ export default function() {
166 }, 166 },
167 { 167 {
168 title: '提现成功日期', 168 title: '提现成功日期',
169 - key: 'createTime', 169 + key: 'withdrawTime',
170 align: 'center', 170 align: 'center',
171 render(h, params) { 171 render(h, params) {
172 - const time = moment.unix(params.row.createTime); 172 + const time = moment.unix(params.row.withdrawTime);
173 return ( 173 return (
174 <div> 174 <div>
175 <div>{time.format('YYYY/MM/DD')}</div> 175 <div>{time.format('YYYY/MM/DD')}</div>
@@ -165,7 +165,7 @@ const exportExcelConfs = { @@ -165,7 +165,7 @@ const exportExcelConfs = {
165 'withdrawServiceAmount', 165 'withdrawServiceAmount',
166 'serviceAmount', 166 'serviceAmount',
167 'statusName', 167 'statusName',
168 - 'createTime', 168 + 'withdrawTime',
169 ], 169 ],
170 }, 170 },
171 }, 171 },
@@ -195,7 +195,7 @@ const exportExcelConfs = { @@ -195,7 +195,7 @@ const exportExcelConfs = {
195 type: 'string', 195 type: 'string',
196 }, 196 },
197 { 197 {
198 - caption: '商家实收', 198 + caption: '运费',
199 type: 'number', 199 type: 'number',
200 }, 200 },
201 { 201 {
@@ -203,6 +203,10 @@ const exportExcelConfs = { @@ -203,6 +203,10 @@ const exportExcelConfs = {
203 type: 'number', 203 type: 'number',
204 }, 204 },
205 { 205 {
  206 + caption: '商家实收',
  207 + type: 'number',
  208 + },
  209 + {
206 caption: '提现状态', 210 caption: '提现状态',
207 type: 'string', 211 type: 'string',
208 }, 212 },
@@ -217,8 +221,9 @@ const exportExcelConfs = { @@ -217,8 +221,9 @@ const exportExcelConfs = {
217 'orderCode', 221 'orderCode',
218 'productName', 222 'productName',
219 'clearingType', 223 'clearingType',
220 - 'realIncome', 224 + 'freightAmount',
221 'withdrawServiceAmount', 225 'withdrawServiceAmount',
  226 + 'realIncome',
222 'statusName', 227 'statusName',
223 'withdrawTime', 228 'withdrawTime',
224 ], 229 ],