fix: 修复部分问题
This commit is contained in:
parent
fa6b785f70
commit
66c8df89d8
|
|
@ -14,7 +14,7 @@
|
||||||
<view class="price">
|
<view class="price">
|
||||||
<text class="yang">¥</text>
|
<text class="yang">¥</text>
|
||||||
<!-- <text class="amount">{{RetainDecimalPoint(totalPrice)}}</text> -->
|
<!-- <text class="amount">{{RetainDecimalPoint(totalPrice)}}</text> -->
|
||||||
<text class="amount">{{_fixed(totalPrice)}}</text>
|
<text class="amount">{{__amount(totalPrice)}}</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="right" @tap="create" :class="[Shoplength > 0?'right2':'']">
|
<view class="right" @tap="create" :class="[Shoplength > 0?'right2':'']">
|
||||||
|
|
@ -45,7 +45,7 @@
|
||||||
<view class="money">
|
<view class="money">
|
||||||
<view class="price">
|
<view class="price">
|
||||||
<text class="yang">¥</text>
|
<text class="yang">¥</text>
|
||||||
<text class="amount">{{_fixed(item['adj_pay'] * item['num'])}}</text>
|
<text class="amount">{{__amount(item['adj_pay'] * item['num'])}}</text>
|
||||||
<!-- <text class="amount">{{RetainDecimalPoint(item['pay_price'] * item['num'])}}</text> -->
|
<!-- <text class="amount">{{RetainDecimalPoint(item['pay_price'] * item['num'])}}</text> -->
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
@ -181,7 +181,7 @@
|
||||||
<view class="MDL-Cart-left-price">
|
<view class="MDL-Cart-left-price">
|
||||||
<text class="yang">¥</text>
|
<text class="yang">¥</text>
|
||||||
<!-- <text class="amount">{{RetainDecimalPoint(totalPrice)}}</text> -->
|
<!-- <text class="amount">{{RetainDecimalPoint(totalPrice)}}</text> -->
|
||||||
<text class="amount">{{totalPrice}}</text>
|
<text class="amount">{{__amount(totalPrice)}}</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="MDL-Cart-right theme-Union-Class-5-1" @tap="create" :class="[Shoplength > 0?'right2':'']">
|
<view class="MDL-Cart-right theme-Union-Class-5-1" @tap="create" :class="[Shoplength > 0?'right2':'']">
|
||||||
|
|
@ -218,8 +218,8 @@
|
||||||
<view class="MDL-Cart-Popup-item-commodity-infor-money">
|
<view class="MDL-Cart-Popup-item-commodity-infor-money">
|
||||||
<view class="MDL-Cart-Popup-item-commodity-infor-money-price">
|
<view class="MDL-Cart-Popup-item-commodity-infor-money-price">
|
||||||
<text class="MDL-Cart-Popup-item-commodity-infor-money-yang">¥</text>
|
<text class="MDL-Cart-Popup-item-commodity-infor-money-yang">¥</text>
|
||||||
<text class="MDL-Cart-Popup-item-commodity-infor-money-amount" v-if="item.pay_price">{{(item.pay_price * item.num)}}</text>
|
<text class="MDL-Cart-Popup-item-commodity-infor-money-amount" v-if="item.pay_price">{{(__amount(item.pay_price * item.num))}}</text>
|
||||||
<text class="MDL-Cart-Popup-item-commodity-infor-money-amount" v-else>{{(item.adj_pay * item.num)}}</text>
|
<text class="MDL-Cart-Popup-item-commodity-infor-money-amount" v-else>{{(__amount(item.adj_pay * item.num))}}</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
@ -261,7 +261,7 @@
|
||||||
<view class="XBK-Cart-left-price">
|
<view class="XBK-Cart-left-price">
|
||||||
<text class="yang">¥</text>
|
<text class="yang">¥</text>
|
||||||
<!-- <text class="amount">{{RetainDecimalPoint(totalPrice)}}</text> -->
|
<!-- <text class="amount">{{RetainDecimalPoint(totalPrice)}}</text> -->
|
||||||
<text class="amount">{{totalPrice}}</text>
|
<text class="amount">{{__amount(totalPrice)}}</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="XBK-Cart-right" @tap="create" :class="[Shoplength > 0?'right2':'']">
|
<view class="XBK-Cart-right" @tap="create" :class="[Shoplength > 0?'right2':'']">
|
||||||
|
|
@ -349,7 +349,7 @@
|
||||||
</view>
|
</view>
|
||||||
<view class="RX-Cart-left-price">
|
<view class="RX-Cart-left-price">
|
||||||
<text class="yang">¥</text>
|
<text class="yang">¥</text>
|
||||||
<text class="amount">{{totalPrice}}</text>
|
<text class="amount">{{__amount(totalPrice)}}</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="RX-Cart-right" @tap="create" :class="[Shoplength > 0?'right2':'']">
|
<view class="RX-Cart-right" @tap="create" :class="[Shoplength > 0?'right2':'']">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue