Commit a41a7f4a authored by 王悦's avatar 王悦

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

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