Commit 809e578c authored by youjie's avatar youjie

no message

parent 0b77b0a5
......@@ -17,7 +17,7 @@
</style>
<template>
<div class="m_TicketingModule">
<div v-if="OtherType==7">
<div v-if="OtherType==7||OtherType==65">
<div class="_tit">
<span class="_text">预付款单据</span>
<div>
......@@ -258,7 +258,9 @@ export default {
this.details=data;
if(this.OtherType==7){
this.getDetails()
}else{
}else if(this.OtherType==65){
this.getyfTableList()
} else{
this.getczTableList();
}
}
......@@ -306,6 +308,26 @@ export default {
}
}, err => {})
},
// 预付款退款详情
getyfTableList(){
this.loading = true
let msg={
pageIndex:1,
pageSize:100,
FrID:this.details.ReFinanceId
};
this.cdtotal=0;
this.apipost('Financial_get_GetAdvanceFinancePageList', msg, res => {
this.loading = false
if (res.data.resultCode == 1) {
let data=res.data.data.pageData;
this.czList=data;
}
else{
this.Error(res.data.message)
}
}, err => {})
},
getDetails(){
this.loading = true;
let msg={
......
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