From 238f56ab117947fd65052fc6ff5345d0005f6171 Mon Sep 17 00:00:00 2001 From: linxi <957440651@qq.com> Date: Wed, 12 Aug 2026 10:18:44 +0800 Subject: [PATCH] =?UTF-8?q?Fix=EF=BC=9A5716=20=E3=80=90=E5=95=86=E5=9F=8E?= =?UTF-8?q?=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91=E3=80=90=E6=88=91=E7=9A=84?= =?UTF-8?q?=E8=AE=A2=E5=8D=95-=E9=9B=86=E9=87=87=E4=B8=AD=E5=BF=83?= =?UTF-8?q?=E3=80=91=E5=88=A0=E9=99=A4=E5=B7=B2=E5=AE=8C=E6=88=90=E8=AE=A2?= =?UTF-8?q?=E5=8D=95=E5=90=8E=EF=BC=8C=E9=A1=B5=E9=9D=A2=E8=87=AA=E5=8A=A8?= =?UTF-8?q?=E5=88=B7=E6=96=B0=E8=B7=B3=E8=BD=AC=E8=87=B3=E3=80=90=E6=88=91?= =?UTF-8?q?=E7=9A=84=E8=AE=A2=E5=8D=95-=E8=B4=AD=E7=89=A9=E3=80=91?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/order/MyOrder/index.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pages/order/MyOrder/index.vue b/pages/order/MyOrder/index.vue index e4d8eb6..3592600 100644 --- a/pages/order/MyOrder/index.vue +++ b/pages/order/MyOrder/index.vue @@ -1412,7 +1412,11 @@ export default { return } delOrderHandle(order.orderId).then(() => { - this.changeType() + this.getOrderData() + const index = this.orderList.indexOf(order) + if (index > -1) { + this.orderList.splice(index, 1) + } }) }, goStore(orderOrIndex) {