订单bug修改

This commit is contained in:
1154079537 2024-05-11 14:48:40 +08:00
parent 6f4e2dc39a
commit a250b604f3

View File

@ -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;