From 182e54e421048140dea5e0691eece38fa1e28901 Mon Sep 17 00:00:00 2001 From: Taric Xin Date: Wed, 19 Jan 2022 14:08:27 +0800 Subject: [PATCH] edit --- .../recharge-record/recharge-record.component.ts | 8 ++++---- .../withdrawals-record.component.ts | 11 +++++------ 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/src/app/routes/financial-management/components/recharge-record/recharge-record.component.ts b/src/app/routes/financial-management/components/recharge-record/recharge-record.component.ts index 9f050cfe..83169344 100644 --- a/src/app/routes/financial-management/components/recharge-record/recharge-record.component.ts +++ b/src/app/routes/financial-management/components/recharge-record/recharge-record.component.ts @@ -158,14 +158,14 @@ export class RechargeRecordComponent implements OnInit { private initST(): STColumn[] { return [ { title: '充值时间', index: 'createTime', type: 'date', width: 180 }, - { title: '充值单号', index: 'rechargeNo', width: 120 }, - { title: '网络货运人', index: 'ltdName', width: 120 }, + { title: '充值单号', index: 'rechargeNo', width: 140 }, + { title: '网络货运人', index: 'ltdName', width: 160 }, { title: '银行类型', index: 'bankTypeLabel', width: 100 }, { title: '账户类型', index: 'accountTypeLabel', width: 100 }, - { title: '账户名称', index: 'rechargeName', width: 100 }, + { title: '账户名称', index: 'rechargeName', width: 140 }, { title: '虚拟账户', index: 'virtualAccount', width: 100 }, { title: '充值金额', index: 'rechargeAmount', width: 100 }, - { title: '充值银行账户', render: 'transferBankAccount', width: 140 }, + { title: '充值银行账户', render: 'transferBankAccount', width: 200 }, { title: '充值方式', index: 'payChannelLabel', width: 100 }, { title: '充值状态', index: 'rechargeStatusLabel', width: 100 }, { title: '银行流水号', index: 'paySerialNumber', width: 120 }, 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 37e4b3b8..864fae29 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 @@ -262,14 +262,8 @@ export class WithdrawalsRecordComponent implements OnInit { { title: '操作', fixed: 'right', - className: 'text-center', width: '110px', buttons: [ - { - text: '审核', - iif: item => item.refundStatus === '1', - click: item => this.auditAction(item) - }, { text: '查看回单', iif: item => item.refundStatus === '3', @@ -281,6 +275,11 @@ export class WithdrawalsRecordComponent implements OnInit { bussType: '06' }) }, + { + text: '审核', + iif: item => item.refundStatus === '1', + click: item => this.auditAction(item) + }, { text: '详情', click: item => this.router.navigate(['/financial-management/withdrawals-record/detail/' + item.id])