Commit f3becd10 authored by liudong1993's avatar liudong1993

1

parent ab499962
...@@ -150,6 +150,37 @@ ...@@ -150,6 +150,37 @@
</table> </table>
</div> </div>
</div> </div>
<div v-if="details.SpecialType && details.SpecialType==14">
<div class="_tit">
<span class="_text">OP与财务费用关联单</span>
<div>
<span class="_btn" v-if="tableShow" @click="tableShow=false">{{$t('fnc.shouqi')}} <i class="iconfont icon-gengduo _rotate"></i> </span>
<span class="_btn" v-else @click="tableShow=true">{{$t('fnc.zhankai')}} <i class="iconfont icon-gengduo"></i> </span>
</div>
</div>
<div v-show="tableShow" class="sanjiao-box _padding_20_15">
<table border="1" class="czBillModule _border_color_b Receipt_table" bordercolor="#c94052" style="border-collapse:collapse;width: 100%;" v-loading='loading'>
<tr>
<th>{{$t('sm.company')}}</th>
<th>{{$t('advmanager.v_type')}}</th>
<th>{{$t('fnc.danhao')}}</th>
<th>{{$t('fnc.feiyongleixing')}}</th>
<th>{{$t('fnc.yuanbi')}}</th>
<th>{{$t('fnc.bweibi')}}</th>
<th>{{$t('hotel.hotel_status')}}</th>
</tr>
<tr class="_color_b" v-for="(item,index) in opFinanceFeeList" :key="index">
<td>{{item.BranchName}}</td>
<th>{{item.TypeName}}</th>
<td class="hover_text" @click="goDetail(item.FrID)" ><span>{{item.FrID}}</span></td>
<th>{{item.CostTypeIdStr}}</th>
<td>{{item.WBMoney}}/{{item.CurrencyName}}</td>
<td>{{item.Money}}</td>
<td>{{item.Status}}</td>
</tr>
</table>
</div>
</div>
<div v-if="IsAdvanceFinance==1" style="border-top: 1px solid #DDDDDD;"> <div v-if="IsAdvanceFinance==1" style="border-top: 1px solid #DDDDDD;">
<div class="_tit"> <div class="_tit">
<span class="_text">{{$t('objFill.chongdidanju')}}</span> <span class="_text">{{$t('objFill.chongdidanju')}}</span>
...@@ -381,6 +412,7 @@ export default { ...@@ -381,6 +412,7 @@ export default {
matchTransferList: [], matchTransferList: [],
zhaohongList: [], zhaohongList: [],
KimonoList: [], KimonoList: [],
opFinanceFeeList: [],
JapanCarModel: {} JapanCarModel: {}
} }
},watch:{ },watch:{
...@@ -465,6 +497,8 @@ export default { ...@@ -465,6 +497,8 @@ export default {
this.getZhaoHongList(); this.getZhaoHongList();
}else if(this.details.SpecialType && this.details.SpecialType==13){ }else if(this.details.SpecialType && this.details.SpecialType==13){
this.getKimonoList(); this.getKimonoList();
}else if(this.details.SpecialType && this.details.SpecialType==14){
this.getOPFinanceFeeList();
} }
}, },
goTravelControlList(id){ goTravelControlList(id){
...@@ -559,6 +593,22 @@ export default { ...@@ -559,6 +593,22 @@ export default {
} }
}, err => {}) }, err => {})
}, },
getOPFinanceFeeList(){
this.loading = true
let msg={
FrId:this.FrID
};
this.apipost('Financial_post_GetOPAndFinanceFeeReList', msg, res => {
this.loading = false
if (res.data.resultCode == 1) {
let data=res.data.data;
this.opFinanceFeeList=data;
}
else{
this.Error(res.data.message)
}
}, err => {})
},
// OtherType=7详情 // OtherType=7详情
getDetails(){ getDetails(){
this.loading = true; this.loading = true;
......
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