多驿站费
This commit is contained in:
parent
466ddb451b
commit
6f5185beb3
@ -113,8 +113,18 @@ bind:enter="enterPageContainer" bind:leave="leavePageContainer" wx:if="{{isShowO
|
||||
</view>
|
||||
<view class="spliter"></view>
|
||||
<view class="kv-item">
|
||||
<view class="key">服务费</view>
|
||||
<view class="value money money-normal">{{preOrder.price_info.original_amount}}</view>
|
||||
<view class="key">订单总金额</view>
|
||||
<view class="value money money-normal">
|
||||
{{preOrder.price_info.original_amount}}
|
||||
</view>
|
||||
</view>
|
||||
<view class="kv-item">
|
||||
<view class="key">基础配送费</view>
|
||||
<view class="value money money-normal">{{preOrder.price_info.base_delivery_amount}}</view>
|
||||
</view>
|
||||
<view class="kv-item" wx:if="{{preOrder.price_info.more_station_price}}">
|
||||
<view class="key">多驿站费</view>
|
||||
<view class="value money money-normal">{{preOrder.price_info.more_station_price}}</view>
|
||||
</view>
|
||||
<view class="kv-item" wx:if="{{preOrder.price_info.coupon_discount_amount}}">
|
||||
<view class="key">优惠券</view>
|
||||
|
||||
@ -240,7 +240,8 @@
|
||||
.pc-content .tips{
|
||||
font-size:26rpx;
|
||||
color:#888888;
|
||||
line-height: 38rpx;
|
||||
}
|
||||
.pc-content .button{
|
||||
margin:60rpx 0 40rpx 0;
|
||||
margin:57rpx 0 40rpx 0;
|
||||
}
|
||||
|
||||
@ -102,11 +102,23 @@
|
||||
<view class="value bold">{{orderDetail.package_count}}</view>
|
||||
</view>
|
||||
<view class="kv">
|
||||
<view class="key">订单金额</view>
|
||||
<view class="key">订单总金额</view>
|
||||
<view class="value">
|
||||
<view class="money money-normal">{{orderDetail.original_amount}}</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="kv">
|
||||
<view class="key">基础配送费</view>
|
||||
<view class="value">
|
||||
<view class="money money-normal">{{orderDetail.base_delivery_amount}}</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="kv" wx:if="{{orderDetail.more_station_price}}">
|
||||
<view class="key">多驿站费</view>
|
||||
<view class="value">
|
||||
<view class="money money-normal">{{orderDetail.more_station_price}}</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="kv" wx:if="{{orderDetail.point_discount_amount>0}}">
|
||||
<view class="key">蜂蜜抵扣</view>
|
||||
<view class="value">
|
||||
|
||||
@ -136,6 +136,10 @@
|
||||
.order-info .kv .key{
|
||||
font-size: 30rpx;
|
||||
color: #888888;
|
||||
min-width:150rpx;
|
||||
/* text-align: justify;
|
||||
text-align-last: justify; */
|
||||
text-align: right;
|
||||
}
|
||||
.order-info .kv .value{
|
||||
font-size: 32rpx;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user