Commit a41a7f4a authored by 王悦's avatar 王悦

资金调拨单下一步审核人、审核步骤没显示

parent 27b01da4
...@@ -300,7 +300,7 @@ ...@@ -300,7 +300,7 @@
<table class="collection_Table" style="border-collapse: collapse;"> <table class="collection_Table" style="border-collapse: collapse;">
<tr> <tr>
<th width="100">收款方式</th> <th width="100">收款方式</th>
<th width="280">账户</th> <th width="300">账户</th>
<th width="110">金额</th> <th width="110">金额</th>
<th width="90">币种</th> <th width="90">币种</th>
<th width="85">汇率</th> <th width="85">汇率</th>
...@@ -356,7 +356,7 @@ ...@@ -356,7 +356,7 @@
<table class="pay_Table" style="border-collapse: collapse;"> <table class="pay_Table" style="border-collapse: collapse;">
<tr> <tr>
<th width="100">付款方式</th> <th width="100">付款方式</th>
<th width="280">账户</th> <th width="300">账户</th>
<th width="110">金额</th> <th width="110">金额</th>
<th width="90">币种</th> <th width="90">币种</th>
<th width="85">汇率</th> <th width="85">汇率</th>
...@@ -657,14 +657,8 @@ export default { ...@@ -657,14 +657,8 @@ export default {
AuditList:[] AuditList:[]
}, },
bossID:null, bossID:null,
GetDetail:{ GetDetail:{
AuditSteps:[{ AuditSteps:[]
AuditRecordList:[{
AuditName:''
}]
}],
TCIDList:[],
TCIDAndTCNUMList:[]
}, },
} }
}, },
...@@ -677,20 +671,22 @@ export default { ...@@ -677,20 +671,22 @@ export default {
this.$viewer = viewer this.$viewer = viewer
}, },
getList(){ getList(){
this.apipost('Financial_get_GetFundTransfer', this.msg, res => { this.apipost('Financial_get_GetFundTransfer', this.msg, res => {
if(res.data.resultCode == 1) { if(res.data.resultCode == 1) {
this.GetDetail=res.data.data;
this.dataList=res.data.data; this.dataList=res.data.data;
this.AuditListData.AuditList=this.GetDetail.AuditSteps; this.dataList.AuditSteps.forEach(y=>{
this.AuditListData.AuditList.forEach(y=>{ if(y.Sort>0){
y.contentTips = y.AuditDescription+(y.AuditWay=='2'?'(会签)':'(或签)') y.contentTips = y.AuditDescription+(y.AuditWay=='2'?'(会签)':'(或签)');
}) this.AuditListData.AuditList.push(y);
}
this.GetDetail.AuditSteps.push(y);
});
let arr=[]; let arr=[];
let AuditSteps=[]; let AuditSteps=[];
AuditSteps = arr.concat(this.dataList.AuditSteps); AuditSteps = arr.concat(this.dataList.AuditSteps);
AuditSteps.reverse(); AuditSteps.reverse();
this.dataList.AuditSteps=AuditSteps; this.dataList.AuditSteps=AuditSteps;
this.dataList.SBankList.forEach(x => { this.dataList.SBankList.forEach(x => {
x.comText = '显示附件'; x.comText = '显示附件';
x.isShow = false; x.isShow = false;
...@@ -699,7 +695,7 @@ export default { ...@@ -699,7 +695,7 @@ export default {
x.comText = '显示附件'; x.comText = '显示附件';
x.isShow = false; x.isShow = false;
}); });
console.log(this.GetDetail)
}else{ }else{
this.Error(res.data.message); this.Error(res.data.message);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment