|
|
@@ -22,11 +22,15 @@
|
|
|
<view class="order-main__right">
|
|
|
<view class="order-info__title ellipsisLn"><b style="color:#F00" wx:if="{{nitem.is_zeng}}">[赠品]</b>{{nitem.name}} <span wx:if="{{nitem.color_name || nitem.size_name}}">|</span> {{nitem.color_name}} {{nitem.size_name}}</view>
|
|
|
<!-- <view class="order-info__type ellipsis">{{nitem.detail}}</view> -->
|
|
|
- <view class="order-info__price">
|
|
|
- <currency symbol="¥" value="{{nitem.price}}" wx:if="{{item.status === 'unpay'}}" />
|
|
|
+ <view class="order-info__price" wx:if="item.order_type == 3">
|
|
|
+ <text style=" color: #eab86a;font-size: 24rpx;" wx:if="{{item.status === 'unpay'}}" >{{nitem.price / 100}} 积分</text>
|
|
|
+ <text style=" color: #eab86a;font-size: 24rpx;" wx:if="{{item.status !== 'unpay'}}" >{{nitem.price / 100}} 积分</text>
|
|
|
+ </view>
|
|
|
+ <view wx:else>
|
|
|
+ <currency symbol="¥" value="{{nitem.price}}" wx:if="{{item.status === 'unpay'}}" />
|
|
|
<currency symbol="¥" value="{{nitem.price}}" wx:if="{{item.status !== 'unpay'}}" />
|
|
|
+ </view>
|
|
|
<!-- <currency wx:if="{{item.status == 'unpay' || item.pay_way == 'weixinpay'}}" symbol="¥" value="{{nitem.price}}"></currency><text style="color:#bbb"> <text wx:if="{{item.status == 'unpay' || item.pay_way == 'balance'}}"> <text wx:if="{{item.status == 'unpay'}}"> 或</text> {{nitem.price}}提货券</text></text><currency symbol="¥" value="{{nitem.price}}" ></currency><text class="order-info__point">(或{{nitem.price}}提货券)</text> -->
|
|
|
- </view>
|
|
|
<view class="order-info__count">x{{nitem.order_count}}</view>
|
|
|
</view>
|
|
|
<view class="clean"></view>
|
|
|
@@ -46,9 +50,9 @@
|
|
|
<view class="order-allprice" wx:if="{{item.status !== 'unpay'}}">共{{item.count}}件商品 合计:
|
|
|
<view style="float: right;" wx:if="{{item.pay_way == 'integral' && item.product.mall_balance_price}}">{{(item.total_price+item.freight) / 100}}提货券
|
|
|
</view>
|
|
|
- <text style="float: right;" wx:elif="{{item.pay_way == 'cent'}}">{{(item.total_price+item.freight) / 100}} 积分
|
|
|
+ <text style="float: right;" wx:if="{{item.order_type == 3 || item.pay_way == 'cent'}}">{{(item.total_price+item.freight) / 100}} 积分
|
|
|
</text>
|
|
|
- <text style="float: right;" wx:elif="{{item.pay_way == 'balance'}}">{{(item.total_price+item.freight) / 100}}
|
|
|
+ <text style="float: right;" wx:if="{{item.pay_way == 'balance'}}">{{(item.total_price+item.freight) / 100}}
|
|
|
</text>
|
|
|
<currency style="float: right;" wx:if="{{item.pay_way == 'weixinpay'}}" symbol="¥" value="{{item.total_price+item.freight}}"></currency>
|
|
|
<view class="clean"></view>
|