tianyi 4 days ago
parent
commit
0a8692da4c
  1. 6
      pages/myCenter/businessInfo.vue
  2. 8
      pages/shop/orderDetail.vue

6
pages/myCenter/businessInfo.vue

@ -35,7 +35,7 @@
拼团佣金
</view>
<view class="list-right">
{{shop.commissionRateMore}}
{{shop.commissionRateMore}}%
</view>
</view>
<view class="list-1">
@ -43,7 +43,7 @@
单独购买佣金
</view>
<view class="list-right">
{{shop.commissionRateOne}}
{{shop.commissionRateOne}}%
</view>
</view>
<view class="list-1">
@ -75,7 +75,7 @@
排名
</view>
<view class="list-right">
{{shop.shoprank}}
{{shop.shoprank == undefined?'0':shop.shoprank}}
</view>
</view>
<view class="list-1">

8
pages/shop/orderDetail.vue

@ -57,7 +57,7 @@
{{'x'+ item.quantity}}
</view>
<view style="width: 100rpx;text-align: right;">
{{'¥'+ item.price}}
{{'¥'+ item.price == undefined ? 0 : item.price}}
</view>
</view>
</view>
@ -67,7 +67,7 @@
商品金额
</view>
<view class="">
{{'¥' + data.goodsAmount}}
{{'¥' + data.goodsAmount == undefined ? 0 : data.goodsAmount}}
</view>
</view>
<view style="display: flex;height: 60rpx;line-height: 60rpx;">
@ -75,7 +75,7 @@
配送费
</view>
<view class="">
{{'¥' + data.deliveryFee}}
{{'¥' + data.deliveryFee == undefined ? 0 : data.deliveryFee}}
</view>
</view>
<view style="display: flex;height: 60rpx;line-height: 60rpx;">
@ -83,7 +83,7 @@
客户实际支付
</view>
<view class="">
{{'¥'+ data.totalAmount}}
{{'¥'+ data.totalAmount == undefined ? 0 : data.totalAmount}}
</view>
</view>
<view style="display: flex;height: 60rpx;line-height: 60rpx;">

Loading…
Cancel
Save