This commit is contained in:
Taric Xin
2022-01-19 14:08:27 +08:00
parent 26a0b9cd99
commit 182e54e421
2 changed files with 9 additions and 10 deletions

View File

@ -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])