This commit is contained in:
chc
2022-11-22 17:17:37 +08:00
parent 69c2c4c5c2
commit 830154371a
8 changed files with 442 additions and 237 deletions

View File

@@ -53,7 +53,7 @@
></Step>
</Steps>
</div>
<div class="order-card">
<div class="order-card" v-if="order.order.deliveryMethod == 'LOGISTICS'">
<h3>收货人信息</h3>
<p>收货人:{{ order.order.consigneeName }}</p>
<p>手机号码:{{ order.order.consigneeMobile | secrecyMobile }}</p>
@@ -62,6 +62,11 @@
{{ order.order.consigneeDetail }}
</p>
</div>
<div class="order-card" v-if="order.order.deliveryMethod == 'SELF_PICK_UP'">
<h3>自提点信息</h3>
<p>自提点名称:{{ order.order.storeAddressPath }}</p>
<p>联系方式:{{ order.order.storeAddressMobile }}</p>
</div>
<div class="order-card">
<h3>付款信息</h3>
<p>支付方式:{{ order.paymentMethodValue }}</p>
@@ -70,7 +75,7 @@
<div class="order-card" v-if="!order.order.verificationCode">
<h3>配送信息</h3>
<p>配送方式:{{ order.deliveryMethodValue }}</p>
<p>配送状态:{{ order.deliverStatusValue }}</p>
<p v-if="order.order.deliveryMethod === 'LOGISTICS'">配送状态:{{ order.deliverStatusValue }}</p>
<p v-if="logistics">
物流信息:{{ logistics.shipper || "暂无物流信息" }}
</p>
@@ -270,6 +275,9 @@ export default {
if (res.success) {
this.order = res.result;
this.progressList = res.result.orderLogs;
if (this.order.order.deliveryMethod === 'LOGISTICS') {
this.traces();
}
}
});
},
@@ -336,7 +344,6 @@ export default {
},
mounted() {
this.getDetail();
this.traces();
},
};
</script>