审核、付款页面优化

This commit is contained in:
shiyj1101 2021-06-18 09:48:44 +08:00
parent f50d4294bc
commit 2c0205541f
2 changed files with 6 additions and 0 deletions

View File

@ -12,6 +12,7 @@
records: 1, records: 1,
moreCondition: false, moreCondition: false,
applyId: '', applyId: '',
acctId: '',
conditions: { conditions: {
state: '' state: ''
@ -76,6 +77,7 @@
}, },
_openAccountPaykModal:function(_accountWithdrawalApplyFks){ _openAccountPaykModal:function(_accountWithdrawalApplyFks){
vc.component.accountWithdrawalApplyFkManageInfo.applyId = _accountWithdrawalApplyFks.applyId; vc.component.accountWithdrawalApplyFkManageInfo.applyId = _accountWithdrawalApplyFks.applyId;
vc.component.accountWithdrawalApplyFkManageInfo.acctId = _accountWithdrawalApplyFks.acctId;
vc.emit('accountPay', 'accountPayModel',{}); vc.emit('accountPay', 'accountPayModel',{});
}, },
_auditAccountWithdrawalApplyFkState:function(_accountWithdrawalApplyFk){ _auditAccountWithdrawalApplyFkState:function(_accountWithdrawalApplyFk){
@ -86,6 +88,7 @@
_accountWithdrawalApplyFk.state='687'; _accountWithdrawalApplyFk.state='687';
} }
_accountWithdrawalApplyFk.applyId = vc.component.accountWithdrawalApplyFkManageInfo.applyId; _accountWithdrawalApplyFk.applyId = vc.component.accountWithdrawalApplyFkManageInfo.applyId;
_accountWithdrawalApplyFk.acctId = vc.component.accountWithdrawalApplyFkManageInfo.acctId;
_accountWithdrawalApplyFk.context = _accountWithdrawalApplyFk.remark; _accountWithdrawalApplyFk.context = _accountWithdrawalApplyFk.remark;
vc.http.apiPost( vc.http.apiPost(
'/accountWithdrawalApply/upAccountWithdrawalApply', '/accountWithdrawalApply/upAccountWithdrawalApply',

View File

@ -12,6 +12,7 @@
records: 1, records: 1,
moreCondition: false, moreCondition: false,
applyId: '', applyId: '',
acctId: '',
conditions: { conditions: {
state: '' state: ''
@ -76,6 +77,7 @@
}, },
_openAuditAccountWithdrawalApplyModal:function(_accountWithdrawalApply){ _openAuditAccountWithdrawalApplyModal:function(_accountWithdrawalApply){
vc.component.accountWithdrawalApplyShManageInfo.applyId = _accountWithdrawalApply.applyId; vc.component.accountWithdrawalApplyShManageInfo.applyId = _accountWithdrawalApply.applyId;
vc.component.accountWithdrawalApplyShManageInfo.acctId = _accountWithdrawalApply.acctId;
vc.emit('audit','openAuditModal',{}); vc.emit('audit','openAuditModal',{});
}, },
_auditAccountWithdrawalApplyShState:function(_accountWithdrawalApplySh){ _auditAccountWithdrawalApplyShState:function(_accountWithdrawalApplySh){
@ -87,6 +89,7 @@
} }
_accountWithdrawalApplySh.applyId = vc.component.accountWithdrawalApplyShManageInfo.applyId; _accountWithdrawalApplySh.applyId = vc.component.accountWithdrawalApplyShManageInfo.applyId;
_accountWithdrawalApplySh.context = _accountWithdrawalApplySh.remark; _accountWithdrawalApplySh.context = _accountWithdrawalApplySh.remark;
_accountWithdrawalApplySh.acctId = vc.component.accountWithdrawalApplyShManageInfo.acctId;
vc.http.apiPost( vc.http.apiPost(
'/accountWithdrawalApply/upAccountWithdrawalApply', '/accountWithdrawalApply/upAccountWithdrawalApply',
JSON.stringify(_accountWithdrawalApplySh), JSON.stringify(_accountWithdrawalApplySh),