liudan 1 month ago
parent 882aabd226
commit 8c6146edd1
  1. 16
      pages/order/detail.vue

@ -18,7 +18,7 @@
<!-- 待收货 -->
<block v-else-if="order.receipt_status == ReceiptStatusEnum.NOT_RECEIVED.value">
<image class="image" src="/static/order/status/wait_receipt.png" mode="aspectFit"></image>
<view class="qujianma" v-if="order.ziti_address">
<view class="qujianma" v-if="order.delivery_type == DeliveryTypeEnum.EXTRACT.value">
取件码{{order.order_id}}
</view>
</block>
@ -62,9 +62,8 @@
</view>
</view>
<!-- 快递配送门店自提 -->
<view v-if="order.delivery_type == DeliveryTypeEnum.EXTRACT.value" class="delivery-extract i-card"
@click="handleTargetExtract(order.address.address_id)">
<!-- 快递配送门店自提 @click="handleTargetExtract(order.address.address_id)"-->
<view v-if="order.delivery_type == DeliveryTypeEnum.EXTRACT.value" class="delivery-extract i-card">
<view class="extract-top">
<text class="title">自提门店</text>
<text class="subtitle">您须到该自提点取货</text>
@ -84,9 +83,9 @@
<text class="item-text">{{ order.address.address }}</text>
</view>
</view>
<view class="icon-arrow">
<!-- <view class="icon-arrow">
<text class="iconfont icon-arrow-right"></text>
</view>
</view> -->
</view>
</view>
</block>
@ -252,9 +251,10 @@
<!-- 订单核销码 -->
<block v-if="order.pay_status == PayStatusEnum.SUCCESS.value && order.delivery_type == DeliveryTypeEnum.EXTRACT.value
&& order.delivery_status == DeliveryStatusEnum.NOT_DELIVERED.value">
<view class="btn-item active" @click="onExtractQRCode(order.order_id)">
<!-- @click="onExtractQRCode(order.order_id)" -->
<view class="btn-item active">
<text class="iconfont icon-qr-extract"></text>
<text class="m-l-10">核销码</text>
<text class="m-l-10">自提码{{order.order_id}}</text>
</view>
</block>
</block>

Loading…
Cancel
Save