|
|
@ -356,7 +356,7 @@ |
|
|
打包费 |
|
|
打包费 |
|
|
</view> |
|
|
</view> |
|
|
<view style="color: #000;font-weight:700;"> |
|
|
<view style="color: #000;font-weight:700;"> |
|
|
¥{{orderDetail.packageFee}} |
|
|
¥{{orderDetail.packageFee == undefined ? '' : orderDetail.packageFee}} |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
<view style="height: 80rpx;line-height: 80rpx;display: flex;" |
|
|
<view style="height: 80rpx;line-height: 80rpx;display: flex;" |
|
|
@ -365,7 +365,7 @@ |
|
|
配送费 |
|
|
配送费 |
|
|
</view> |
|
|
</view> |
|
|
<view style="color: #000;font-weight:700;"> |
|
|
<view style="color: #000;font-weight:700;"> |
|
|
¥{{orderDetail.deliveryFee}} |
|
|
¥{{orderDetail.deliveryFee == undefined ? '' : orderDetail.deliveryFee}} |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
<view style="height: 80rpx;line-height: 80rpx;display: flex;" |
|
|
<view style="height: 80rpx;line-height: 80rpx;display: flex;" |
|
|
@ -374,7 +374,7 @@ |
|
|
优惠券 |
|
|
优惠券 |
|
|
</view> |
|
|
</view> |
|
|
<view style="color: #000;font-weight:700;"> |
|
|
<view style="color: #000;font-weight:700;"> |
|
|
-¥{{orderDetail.userCouponNum}} |
|
|
-¥{{orderDetail.userCouponNum == undefined ? '' : orderDetail.userCouponNum}} |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
@ -384,7 +384,7 @@ |
|
|
实付 |
|
|
实付 |
|
|
</view> |
|
|
</view> |
|
|
<view class=""> |
|
|
<view class=""> |
|
|
¥{{orderDetail.totalAmount}} |
|
|
¥{{orderDetail.totalAmount == undefined ? '' : orderDetail.totalAmount}} |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
@ -397,7 +397,7 @@ |
|
|
取件地址 |
|
|
取件地址 |
|
|
</view> |
|
|
</view> |
|
|
<view style="color: #000;font-weight: 700;"> |
|
|
<view style="color: #000;font-weight: 700;"> |
|
|
{{orderDetail.shopAddress}} |
|
|
{{orderDetail.shopAddress == undefined ? '' : orderDetail.shopAddress}} |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
<view style="height: 80rpx;line-height: 80rpx;display: flex;" |
|
|
<view style="height: 80rpx;line-height: 80rpx;display: flex;" |
|
|
@ -406,7 +406,7 @@ |
|
|
收件地址 |
|
|
收件地址 |
|
|
</view> |
|
|
</view> |
|
|
<view style="color: #000;font-weight: 700;"> |
|
|
<view style="color: #000;font-weight: 700;"> |
|
|
{{orderDetail.receiverAddress}} |
|
|
{{orderDetail.receiverAddress == undefined ? '' : orderDetail.receiverAddress}} |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
<view style="height: 80rpx;line-height: 80rpx;display: flex;" |
|
|
<view style="height: 80rpx;line-height: 80rpx;display: flex;" |
|
|
@ -415,7 +415,7 @@ |
|
|
件数 |
|
|
件数 |
|
|
</view> |
|
|
</view> |
|
|
<view style="color: #000;font-weight: 700;"> |
|
|
<view style="color: #000;font-weight: 700;"> |
|
|
{{orderDetail.deliveryInfo.allCount}} |
|
|
{{orderDetail.deliveryInfo.allCount == undefined ? '' : orderDetail.deliveryInfo.allCount}} |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
<view style="height: 80rpx;line-height: 80rpx;display: flex;" |
|
|
<view style="height: 80rpx;line-height: 80rpx;display: flex;" |
|
|
@ -433,7 +433,7 @@ |
|
|
订单号 |
|
|
订单号 |
|
|
</view> |
|
|
</view> |
|
|
<view style="color: #000;font-weight: 700;"> |
|
|
<view style="color: #000;font-weight: 700;"> |
|
|
{{orderDetail.numberCode}} |
|
|
{{orderDetail.numberCode == undefined ? '' : orderDetail.numberCode}} |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
<view style="height: 80rpx;line-height: 80rpx;display: flex;"> |
|
|
<view style="height: 80rpx;line-height: 80rpx;display: flex;"> |
|
|
|