|
@@ -1,5 +1,5 @@
|
|
|
<!--pages/orders/order-detail.wxml-->
|
|
|
-<page-meta page-style="{{ popupShow ? 'overflow: hidden;' : '' }}" style="height: 100vh;">
|
|
|
+<page-meta page-style="{{ (addressPopupShow||popupShow) ? 'overflow: hidden;' : '' }}" style="height: 100vh;">
|
|
|
<view class="container">
|
|
|
<navigation-bar title="确认订单"></navigation-bar>
|
|
|
|
|
@@ -25,7 +25,8 @@
|
|
|
</view>
|
|
|
<view class="goods-type">
|
|
|
<view class="goods-card">{{ "时长: "+goodsInfo.typeName }}</view>
|
|
|
- <view class="goods-num">原价¥{{ my.formatValue(goodsInfo.originalPrice) }}</view>
|
|
|
+ <view wx:if="{{ (goodsInfo.originalPrice-goodsInfo.salePrice)>0 }}" class="goods-num">原价¥{{ my.formatValue(goodsInfo.originalPrice) }}</view>
|
|
|
+ <view wx:else></view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -47,15 +48,15 @@
|
|
|
<text class="stuff">¥</text>
|
|
|
<numberDisplay number="{{ item.salePrice }}" />
|
|
|
</view>
|
|
|
- <view class="itemOriginalPrice">原价¥{{ my.formatValue(item.originalPrice) }}</view>
|
|
|
+ <view wx:if="{{(item.originalPrice-item.salePrice)>0}}" class="itemOriginalPrice">原价¥{{ my.formatValue(item.originalPrice) }}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view wx:if="{{ instrumentsInfo.id }}" class="memberBox">
|
|
|
+ <view wx:if="{{ instrumentsInfo.id }}" class="memberBox {{isAddressInfoTip?'showAddressInfoTip':''}}">
|
|
|
<view wx:if="{{ !addressInfo.id }}" class="memberCon" bind:tap="onAddressInfo">
|
|
|
<image class="memberImg" src="./images/address.png"></image>
|
|
|
<view class="infoBox">
|
|
|
- <text class="topInfo">添加收货地址</text>
|
|
|
+ <text class="topInfo">添加收货信息</text>
|
|
|
<text class="info">在此填写您的收货信息,我们将尽快为您发货</text>
|
|
|
</view>
|
|
|
<image class="chevronImg" src="../index/images/chevron.png"></image>
|
|
@@ -132,7 +133,7 @@
|
|
|
<view class="popup-section addressPopup" wx:if="{{addressPopupShow}}">
|
|
|
<view class="popup-mask" bind:tap="onCloseAddress"></view>
|
|
|
<view class="popup-container">
|
|
|
- <view class="topTit">收货地址</view>
|
|
|
+ <view class="topTit">收货信息</view>
|
|
|
<image bind:tap="onCloseAddress" src="../index/images/icon-close.png" class="iconClose"></image>
|
|
|
<scroll-view scroll-y class="memberListCon">
|
|
|
<block wx:if="{{ addressList.length }}">
|
|
@@ -169,7 +170,7 @@
|
|
|
<view class="popup-mask" bind:tap="onDialogClose"></view>
|
|
|
<view class="popup-container">
|
|
|
<view class="tit">温馨提示</view>
|
|
|
- <view class="titCon">是否要删除该收货地址?</view>
|
|
|
+ <view class="titCon">是否要删除该收货信息?</view>
|
|
|
<view class="btnCon">
|
|
|
<view bind:tap="onDialogClose">取消</view>
|
|
|
<view bind:tap="onDialogOk">确认</view>
|