From e44cf88635aa3e11df2884c3240facc99b14f885 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E6=AF=85?= <1335909236@qq.com> Date: Wed, 17 Sep 2025 16:52:39 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=9B=A2=E8=B4=AD=E5=A4=87?= =?UTF-8?q?=E8=B4=A7=E4=B8=AD=E5=92=8C=E5=BE=85=E8=87=AA=E6=8F=90=E7=9A=84?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=BC=82=E5=B8=B8=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/myOrders/groupOrders/index.vue | 6 ++++-- packages/myOrders/index/index.vue | 4 ++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/packages/myOrders/groupOrders/index.vue b/packages/myOrders/groupOrders/index.vue index b29bdddc..626aca47 100644 --- a/packages/myOrders/groupOrders/index.vue +++ b/packages/myOrders/groupOrders/index.vue @@ -168,6 +168,8 @@ export default { }, methods: { selectTab(index, item) { + console.log("🚀 ~ selectTab ~ index:", index) + console.log("🚀 ~ selectTab ~ item:", item) this.selectedTab = index; if (index == 6) { this.evaluateStatus = 2; @@ -176,10 +178,10 @@ export default { this.evaluateStatus = 1; this.selectStatus = '' } else if (index == 2) { - this.selectStatus = 6; + this.selectStatus = 3; this.evaluateStatus = '' } else { - this.selectStatus = index; + this.selectStatus = index > 2 ? index + 1 : index; this.evaluateStatus = '' } this.getOrderList(); diff --git a/packages/myOrders/index/index.vue b/packages/myOrders/index/index.vue index 4f5ccd7b..e622a71f 100644 --- a/packages/myOrders/index/index.vue +++ b/packages/myOrders/index/index.vue @@ -177,10 +177,10 @@ export default { this.evaluateStatus = 1; this.selectStatus = '' } else if (index == 2) { - this.selectStatus = 6; + this.selectStatus = 3; this.evaluateStatus = '' } else { - this.selectStatus = index; + this.selectStatus = index > 2 ? index + 1 : index; this.evaluateStatus = '' } this.getOrderList();