Commit 809e578c authored by youjie's avatar youjie

no message

parent 0b77b0a5
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
</style> </style>
<template> <template>
<div class="m_TicketingModule"> <div class="m_TicketingModule">
<div v-if="OtherType==7"> <div v-if="OtherType==7||OtherType==65">
<div class="_tit"> <div class="_tit">
<span class="_text">预付款单据</span> <span class="_text">预付款单据</span>
<div> <div>
...@@ -258,7 +258,9 @@ export default { ...@@ -258,7 +258,9 @@ export default {
this.details=data; this.details=data;
if(this.OtherType==7){ if(this.OtherType==7){
this.getDetails() this.getDetails()
}else{ }else if(this.OtherType==65){
this.getyfTableList()
} else{
this.getczTableList(); this.getczTableList();
} }
} }
...@@ -306,6 +308,26 @@ export default { ...@@ -306,6 +308,26 @@ export default {
} }
}, err => {}) }, 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(){ getDetails(){
this.loading = true; this.loading = true;
let msg={ 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