diff --git a/seller/src/views/order/order/orderDetail.vue b/seller/src/views/order/order/orderDetail.vue index 5fd939fb..cef64414 100644 --- a/seller/src/views/order/order/orderDetail.vue +++ b/seller/src/views/order/order/orderDetail.vue @@ -117,7 +117,7 @@ -
+
收货信息:
{{ orderInfo.order.consigneeName }} @@ -126,6 +126,13 @@ {{ orderInfo.order.consigneeDetail }}
+
+
自提信息:
+
+ {{ orderInfo.order.storeAddressPath }} + {{ orderInfo.order.storeAddressMobile }} +
+
支付方式:
diff --git a/seller/src/views/order/order/orderList.vue b/seller/src/views/order/order/orderList.vue index 5db5354a..8aaf7b54 100644 --- a/seller/src/views/order/order/orderList.vue +++ b/seller/src/views/order/order/orderList.vue @@ -39,6 +39,7 @@ + @@ -225,6 +226,10 @@ export default { return h("div", [ h("tag", { props: { color: "geekblue" } }, "待发货"), ]); + }else if (params.row.orderStatus == "STAY_PICKED_UP") { + return h("div", [ + h("tag", { props: { color: "geekblue" } }, "待自提"), + ]); } else if (params.row.orderStatus == "DELIVERED") { return h("div", [ h("tag", { props: { color: "cyan" } }, "已发货"),