Commit 9023833f authored by zhengke's avatar zhengke

修改

parent f0c15e47
...@@ -314,7 +314,12 @@ ...@@ -314,7 +314,12 @@
<span v-show="subItem.PayStyle==6">付款团号:{{subItem.PayTypeTCNUM}}</span> <span v-show="subItem.PayStyle==6">付款团号:{{subItem.PayTypeTCNUM}}</span>
</td> </td>
<td v-if="childIndex==0" :rowspan="6"> <td v-if="childIndex==0" :rowspan="6">
<template v-if="IsShowRMB">
<span>人民币</span>
</template>
<template v-else>
{{GetCurrency(subItem.CurrencyId)}} {{GetCurrency(subItem.CurrencyId)}}
</template>
</td> </td>
<td v-if="childIndex==0" :rowspan="6"> <td v-if="childIndex==0" :rowspan="6">
<span v-if="subItem.DMCPayType === 1">现付</span> <span v-if="subItem.DMCPayType === 1">现付</span>
...@@ -433,7 +438,12 @@ ...@@ -433,7 +438,12 @@
<span v-show="subItem.PayStyle==6">付款团号:{{subItem.PayTypeTCNUM}}</span> <span v-show="subItem.PayStyle==6">付款团号:{{subItem.PayTypeTCNUM}}</span>
</td> </td>
<td v-if="childIndex==0" :rowspan="3"> <td v-if="childIndex==0" :rowspan="3">
<template v-if="IsShowRMB">
<span>人民币</span>
</template>
<template v-else>
{{GetCurrency(subItem.CurrencyId)}} {{GetCurrency(subItem.CurrencyId)}}
</template>
</td> </td>
<td v-if="childIndex==0" :rowspan="3"> <td v-if="childIndex==0" :rowspan="3">
{{subItem.Remarks}} {{subItem.Remarks}}
...@@ -744,6 +754,8 @@ ...@@ -744,6 +754,8 @@
}, },
CurrencyListMoney: [], CurrencyListMoney: [],
currencyTypeObj: [], currencyTypeObj: [],
//判断是否显示人民币
IsShowRMB:false,
} }
}, },
components: { components: {
...@@ -1132,6 +1144,9 @@ ...@@ -1132,6 +1144,9 @@
}, res => { }, res => {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
let nav = res.data.data.list; let nav = res.data.data.list;
if(nav[0].OutBranchId==1216){
this.IsShowRMB=true;
}
let num = 0; let num = 0;
nav.forEach(x => { nav.forEach(x => {
x.CurrencyIdArr = []; x.CurrencyIdArr = [];
......
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