From 389c5cd7cfb1dc48b082cadd8764a3955d39a93e Mon Sep 17 00:00:00 2001 From: Taric Xin Date: Mon, 28 Feb 2022 20:02:04 +0800 Subject: [PATCH] edit --- .../components/refund-record/refund-record.component.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/routes/financial-management/components/refund-record/refund-record.component.ts b/src/app/routes/financial-management/components/refund-record/refund-record.component.ts index 93ea2547..667de869 100644 --- a/src/app/routes/financial-management/components/refund-record/refund-record.component.ts +++ b/src/app/routes/financial-management/components/refund-record/refund-record.component.ts @@ -33,9 +33,9 @@ export class RefundRecordComponent implements OnInit { if (this.sf) { Object.assign(requestOptions.body, { ...this.sf.value, - createTime: { - start: this.sf.value.createTime?.[0] || '', - end: this.sf.value.createTime?.[1] || '' + refundExecuteTime: { + start: this.sf.value.refundExecuteTime?.[0] || '', + end: this.sf.value.refundExecuteTime?.[1] || '' } }); } @@ -251,7 +251,7 @@ export class RefundRecordComponent implements OnInit { return [ { title: '退款单号', render: 'orderRefundCode', width: 190 }, { title: '退款类型', index: 'refundTypeLabel', width: 130 }, - { title: '退款金额', render: 'refundAmount', className: 'text-right', width: 160 }, + { title: '退款金额', render: 'refundAmount', className: 'text-right', width: 180 }, { title: '退款时间', index: 'applyTime', width: 170 }, { title: '货主', index: 'shipperId', width: 150 }, { title: '所属项目', index: 'enterpriseProjectName', width: 140 },