Fix:5716 【商城小程序】【我的订单-集采中心】删除已完成订单后,页面自动刷新跳转至【我的订单-购物】页面

This commit is contained in:
linxi
2026-08-12 10:18:44 +08:00
parent e92027d74e
commit 238f56ab11
+5 -1
View File
@@ -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) {