|
|
|
@ -133,7 +133,7 @@ |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
<view class="goodsPrice"> |
|
|
|
|
¥ <text>{{item.goods_price_min}}</text> |
|
|
|
|
¥ <text>{{item.goods_price_min?Number(item.goods_price_min):item.goods_price_min}}</text> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
<view class="goodsNum"> |
|
|
|
@ -153,7 +153,7 @@ |
|
|
|
|
商品总额 |
|
|
|
|
</view> |
|
|
|
|
<view class="price"> |
|
|
|
|
¥{{ order.orderTotalPrice }} |
|
|
|
|
¥{{ order.orderTotalPrice?Number(order.orderTotalPrice):order.orderTotalPrice }} |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
<view class="orderTitle" v-if="order.address"> |
|
|
|
@ -161,7 +161,7 @@ |
|
|
|
|
运费 |
|
|
|
|
</view> |
|
|
|
|
<view class="price" v-if="order.isIntraRegion"> |
|
|
|
|
¥{{ order.expressPrice }} |
|
|
|
|
¥{{ order.expressPrice?Number(order.expressPrice):order.expressPrice }} |
|
|
|
|
</view> |
|
|
|
|
<view class="price" v-else> |
|
|
|
|
不在配送范围 |
|
|
|
@ -198,7 +198,7 @@ |
|
|
|
|
</view> |
|
|
|
|
<view class="right"> |
|
|
|
|
<text class="totalNum">共{{order.orderTotalNum}}件,合计:</text> |
|
|
|
|
<text class="allPrice">¥{{ order.orderPayPrice }}</text> |
|
|
|
|
<text class="allPrice">¥{{ order.orderPayPrice?Number(order.orderPayPrice):order.orderPayPrice }}</text> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
@ -237,7 +237,7 @@ |
|
|
|
|
<view class="meetPrice"> |
|
|
|
|
应付款 |
|
|
|
|
<text class="type">¥</text> |
|
|
|
|
<text class="price">{{order.orderPayPrice}}</text> |
|
|
|
|
<text class="price">{{order.orderPayPrice?Number(order.orderPayPrice):order.orderPayPrice}}</text> |
|
|
|
|
</view> |
|
|
|
|
<view class="btn" @click="onSubmitOrder()"> |
|
|
|
|
提交订单 |
|
|
|
|