|
|
@@ -26,30 +26,30 @@
|
|
|
<view class="module-det">
|
|
|
<view class="order-msg-blo">
|
|
|
<view class="msg-list">
|
|
|
- <view class="label">收花人</view>
|
|
|
+ <view class="label">收花:</view>
|
|
|
<view class="value">{{ orderInfo.receiveUserName }}</view>
|
|
|
</view>
|
|
|
<view class="msg-list">
|
|
|
- <view class="label">电话</view>
|
|
|
+ <view class="label">电话:</view>
|
|
|
<view class="value">{{ orderInfo.receiveMobile }}</view>
|
|
|
</view>
|
|
|
<view class="msg-list">
|
|
|
- <view class="label">地址</view>
|
|
|
+ <view class="label">地址:</view>
|
|
|
<view class="value">{{ orderInfo.receiveFullAddress }}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="order-msg-blo">
|
|
|
<view class="msg-list">
|
|
|
- <view class="label">送达时间</view>
|
|
|
+ <view class="label">送达:</view>
|
|
|
<view v-if="orderInfo.reachDate == '0000-00-00'" class="value">-</view>
|
|
|
<view v-else class="value"><span style="margin-right:10upx;">{{orderInfo.reachDate}}</span> <span v-if="orderInfo.reachPeriod == 0">上午</span><span v-else-if="orderInfo.reachPeriod == 1">下午</span><span v-else>晚上</span></view>
|
|
|
</view>
|
|
|
<view v-if="orderInfo.reachDate != '0000-00-00'" class="msg-list">
|
|
|
- <view class="label">贺卡</view>
|
|
|
+ <view class="label">贺卡:</view>
|
|
|
<view class="value">{{ orderInfo.needCard == 1 ? "需要" : '不需要' }}</view>
|
|
|
</view>
|
|
|
<view class="msg-list">
|
|
|
- <view class="label">祝福语</view>
|
|
|
+ <view class="label">寄语:</view>
|
|
|
<view class="value">{{ orderInfo.cardInfo || '-' }}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
@@ -64,27 +64,32 @@
|
|
|
<view class="module-det">
|
|
|
<view class="order-msg-blo">
|
|
|
<view class="msg-list">
|
|
|
- <view class="label">订单号</view>
|
|
|
+ <view class="label">单号:</view>
|
|
|
<view class="value">{{ orderInfo.orderSn||'' }}</view>
|
|
|
</view>
|
|
|
<view class="msg-list">
|
|
|
- <view class="label">创建时间</view>
|
|
|
+ <view class="label">时间:</view>
|
|
|
<view class="value">{{ orderInfo.addTime ? orderInfo.addTime.substr(5,11) : ''}}</view>
|
|
|
</view>
|
|
|
- <view class="msg-list">
|
|
|
- <view class="label">运费</view>
|
|
|
+ <view class="msg-list" v-if="Number(orderInfo.sendCost)>0">
|
|
|
+ <view class="label">运费:</view>
|
|
|
<view class="value">¥{{ orderInfo.sendCost ? parseFloat(orderInfo.sendCost) : 0 }}</view>
|
|
|
</view>
|
|
|
+ <view v-if="orderInfo.discountAmount > 0" class="msg-list">
|
|
|
+ <view class="label">优惠:</view>
|
|
|
+ <view class="value">-¥{{ orderInfo.discountAmount ? parseFloat(orderInfo.discountAmount) : 0 }}</view>
|
|
|
+ </view>
|
|
|
<view class="msg-list">
|
|
|
- <view class="label">总金额</view>
|
|
|
- <view class="value">¥{{ orderInfo.prePrice ? parseFloat(orderInfo.prePrice) : 0 }}</view>
|
|
|
+ <view class="label">金额:</view>
|
|
|
+ <view class="value">¥{{ orderInfo.orderPrice ? parseFloat(orderInfo.orderPrice) : 0 }}</view>
|
|
|
</view>
|
|
|
- <view v-if="orderInfo.discountAmount > 0" class="msg-list">
|
|
|
- <view class="label">优惠</view>
|
|
|
- <view class="value">¥{{ orderInfo.discountAmount ? parseFloat(orderInfo.discountAmount) : 0 }}</view>
|
|
|
+ <view class="msg-list" v-if="Number(orderInfo.tkPrice)>0">
|
|
|
+ <view class="label">退款:</view>
|
|
|
+ <view class="value">-¥{{ orderInfo.tkPrice ? parseFloat(orderInfo.tkPrice) : 0 }}</view>
|
|
|
+ <view style="color: #3385ff;margin-left:50upx;" @click="pageTo({url: '/admin/order/refundList',query: {orderSn: orderInfo.orderSn}})">退款记录</view>
|
|
|
</view>
|
|
|
<view class="msg-list">
|
|
|
- <view class="label">实付款</view>
|
|
|
+ <view class="label">实付:</view>
|
|
|
<view class="value">¥{{ orderInfo.realPrice ? parseFloat(orderInfo.realPrice) : 0 }}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
@@ -174,11 +179,11 @@ export default {
|
|
|
padding: 20upx 0;
|
|
|
border-top: 1px solid $borderColor;
|
|
|
.msg-list {
|
|
|
- @include disFlex(flex-start, space-between);
|
|
|
+ display: flex;
|
|
|
+ justify-content: flex-start;
|
|
|
margin: 16upx 0;
|
|
|
.label {
|
|
|
- width: 40%;
|
|
|
- color: $fontColor3;
|
|
|
+ color: #999999;
|
|
|
}
|
|
|
}
|
|
|
}
|