From e2b284f0482254470c181419a735ee59e4f4f24c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E6=AF=85?= <1335909236@qq.com> Date: Tue, 4 Nov 2025 15:28:13 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=94=AE=E5=90=8E=E9=80=80?= =?UTF-8?q?=E8=B4=A7=E9=80=80=E6=AC=BE-=E6=98=BE=E7=A4=BAundefine=E7=9A=84?= =?UTF-8?q?bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/myOrders/index/popup/afterSale/index.vue | 2 +- packages/myOrders/orderDetails/index.vue | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/packages/myOrders/index/popup/afterSale/index.vue b/packages/myOrders/index/popup/afterSale/index.vue index 24623e6e..7bcb560d 100644 --- a/packages/myOrders/index/popup/afterSale/index.vue +++ b/packages/myOrders/index/popup/afterSale/index.vue @@ -369,7 +369,7 @@ export default { console.log('售后商品 - 选中的售后类型:', selectedType); console.log('选中的售后商品:', this.selectedAsGood); - this.merchantContact = `${this.orderItem.supplier_name} ${this.orderItem.supplier_phone}`; + this.merchantContact = `${this.orderItem.supplier_name} ${this.orderItem.supplier_phone || ''}`; this.merchantAddress = this.orderItem.supplier_address; this.afterSalePopup = false; diff --git a/packages/myOrders/orderDetails/index.vue b/packages/myOrders/orderDetails/index.vue index 6c7a9d56..00991ae5 100644 --- a/packages/myOrders/orderDetails/index.vue +++ b/packages/myOrders/orderDetails/index.vue @@ -165,7 +165,7 @@ export default { data() { return { status: "", - countdown: "9:59:59", + countdown: "", orderInfo: {}, }; }, @@ -173,8 +173,7 @@ export default { const item = JSON.parse(options?.item); this.orderInfo = item; // 启动倒计时 - // item.order_status == "1" ? this.startCountdown() : ""; - this.startCountdown() + item.order_status == "1" ? this.startCountdown() : ""; this.status = JSON.stringify(item.order_status); }, methods: {