From a250b604f3650b7c25679b71a39ba5952b213df0 Mon Sep 17 00:00:00 2001 From: 1154079537 <1154079537@qq.com> Date: Sat, 11 May 2024 14:48:40 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=A2=E5=8D=95bug=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/users/order_list/index.vue | 42 ++++++++++++++++---------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/pages/users/order_list/index.vue b/pages/users/order_list/index.vue index 37e377a..991901c 100644 --- a/pages/users/order_list/index.vue +++ b/pages/users/order_list/index.vue @@ -665,26 +665,7 @@ uni.navigateBack(); }, - changeSaleType(type = 1) { - if (type != this.sale_type) { - this.loadend = false; - this.loading = false; - this.$set(this, 'orderList', []); - if (this.orderStatus == 4) { - this.refundParam.identity = type; - this.refundParam.page = 1; - this.getRefundList(); - } else { - this.sale_type = type; - this.page = 1; - this.getOrderData(); - this.getOrderList(); - this.getUserInfo(); - this.getpreSellOrderList(); - } - } - }, // 去商铺 goMall(item) { if (this.hide_mer_status == 0) { @@ -901,11 +882,30 @@ } }, + changeSaleType(type = 1) { + if (this.sale_type == type) return; + + this.loadend = false; + this.loading = false; + this.$set(this, 'orderList', []); + + if (this.orderStatus == 4) { + this.refundParam.identity = type; + this.refundParam.page = 1; + this.getRefundList(); + } else { + this.page = 1; + this.getOrderData(); + this.getOrderList(); + this.getUserInfo(); + this.getpreSellOrderList(); + } + this.sale_type = type; + }, + // 获取退款列表 getRefundList() { let that = this; - console.log(that.loadend); - console.log(that.loading); if (that.loadend) return; if (that.loading) return; that.loading = true;