From 4780ae5b18000dac4519ca743fa3b32ff8d5f12c Mon Sep 17 00:00:00 2001 From: chc <1501738723@qq.com> Date: Thu, 2 Feb 2023 17:06:32 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A0=B8=E9=94=80=E8=87=AA=E6=8F=90=E8=AE=A2?= =?UTF-8?q?=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- seller/src/views/order/order/orderDetail.vue | 9 ++++++++- seller/src/views/order/order/orderList.vue | 5 +++++ 2 files changed, 13 insertions(+), 1 deletion(-) 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" } }, "已发货"),