Commit c0c6a222 by zhangzhen

细节优化

parent 03c43ed2
...@@ -261,7 +261,7 @@ ...@@ -261,7 +261,7 @@
<text class="text-pink text-lg text-bold">{{computePriceInfo.remainingBalance}}</text> <text class="text-pink text-lg text-bold">{{computePriceInfo.remainingBalance}}</text>
</view> </view>
</view> </view>
<view v-if="computePriceInfo.totalFeeNow && computePriceInfo.couponFee <= 0" class="flex-between price"> <view v-if="computePriceInfo.totalFee - computePriceInfo.totalFeeNow > 0" class="flex-between price">
<view class="flex-row-center"> <view class="flex-row-center">
<text class="text-black text-left">会员折扣</text> <text class="text-black text-left">会员折扣</text>
<view class="vip-tag-box"> <view class="vip-tag-box">
...@@ -272,7 +272,7 @@ ...@@ -272,7 +272,7 @@
<view class="flex-row-center"> <view class="flex-row-center">
<text class="text-pink text-xl text-bold" style="margin-right: 6upx;">-</text> <text class="text-pink text-xl text-bold" style="margin-right: 6upx;">-</text>
<text class="text-pink text-bold"></text> <text class="text-pink text-bold"></text>
<text class="text-pink text-lg text-bold">{{computePriceInfo.totalFee - computePriceInfo.totalFeeNow}}</text> <text class="text-pink text-lg text-bold">{{(computePriceInfo.totalFee - computePriceInfo.totalFeeNow).toFixed(2)}}</text>
</view> </view>
</view> </view>
......
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