|
|
@@ -97,7 +97,7 @@
|
|
|
<el-form-item v-if="!isMax" :label="$t('shop.paymentMethod')" required style="padding-left: 0;">
|
|
|
<el-radio-group v-model="form.payType" @change="chosePayType">
|
|
|
<el-radio v-for="(item, index) in payList" :key="index" border :label="item.label" style="margin: 5px;">
|
|
|
- {{ item.name }}<span v-if="item.label === 'cash'" style="color: tomato;">( {{currencyUnitCode}} {{ userBalance.cash | toThousandFilter }})</span>
|
|
|
+ {{ item.name }}<span v-if="item.label === 'cash'" style="color: tomato;">( {{currencyUnitCode}} {{ userBalance.localCash | toThousandFilter }})</span>
|
|
|
</el-radio>
|
|
|
</el-radio-group>
|
|
|
</el-form-item>
|
|
|
@@ -319,7 +319,8 @@ export default {
|
|
|
tableData: null,
|
|
|
payAmount: 0.00,
|
|
|
userBalance: {
|
|
|
- cash: 0
|
|
|
+ cash: 0,
|
|
|
+ localCash: 0,
|
|
|
},
|
|
|
|
|
|
activeName: 'product',
|