diff --git a/src/app/routes/financial-management/components/withdrawals-record/withdrawals-detail/withdrawals-detail.component.html b/src/app/routes/financial-management/components/withdrawals-record/withdrawals-detail/withdrawals-detail.component.html index a1fa2b74..6fdf55fc 100644 --- a/src/app/routes/financial-management/components/withdrawals-record/withdrawals-detail/withdrawals-detail.component.html +++ b/src/app/routes/financial-management/components/withdrawals-record/withdrawals-detail/withdrawals-detail.component.html @@ -28,7 +28,7 @@ {{formData?.virtualAccount}} - {{refundStatus[formData?.virtualAccount]}} + {{formData?.refundStatusLabel}} {{formData?.amount}} diff --git a/src/app/routes/financial-management/components/withdrawals-record/withdrawals-detail/withdrawals-detail.component.ts b/src/app/routes/financial-management/components/withdrawals-record/withdrawals-detail/withdrawals-detail.component.ts index eee41855..1c789121 100644 --- a/src/app/routes/financial-management/components/withdrawals-record/withdrawals-detail/withdrawals-detail.component.ts +++ b/src/app/routes/financial-management/components/withdrawals-record/withdrawals-detail/withdrawals-detail.component.ts @@ -12,14 +12,6 @@ export class WithdrawalsDetailComponent implements OnInit { timeLineData: any = []; - refundStatus: any = { - '1': '待审核', - '2': '提现中', - '3': '提现成功', - '4': '拒绝提现', - '5': '提现失败' - }; - constructor(public service: FreightAccountService, private route: ActivatedRoute) { const id = route.snapshot.params.id; this.loadRefundDetail(id); diff --git a/src/app/routes/financial-management/components/withdrawals-record/withdrawals-record.component.ts b/src/app/routes/financial-management/components/withdrawals-record/withdrawals-record.component.ts index 94298f3e..a1fe9788 100644 --- a/src/app/routes/financial-management/components/withdrawals-record/withdrawals-record.component.ts +++ b/src/app/routes/financial-management/components/withdrawals-record/withdrawals-record.component.ts @@ -242,7 +242,7 @@ export class WithdrawalsRecordComponent implements OnInit { { title: '', index: 'key', type: 'checkbox' }, { title: '提现时间', index: 'createTime', width: 180 }, { title: '提现单号', index: 'refundApplyCode', width: 120 }, - { title: '网络货运人', index: 'ltdname', width: 120 }, + { title: '网络货运人', index: 'ltdName', width: 120 }, { title: '银行类型', index: 'bankTypeLabel', width: 100 }, { title: '账户类型', index: 'accountType', width: 100 }, { title: '账户名称', index: 'bankAccountName', width: 100 },