|
@@ -238,10 +238,12 @@
|
|
|
// this.statusIndex = index
|
|
|
if(index == 0 ){
|
|
|
this.statusIndex = 1 //待提货
|
|
|
+ this.pageNum = 1
|
|
|
this.getList()
|
|
|
}
|
|
|
if(index == 1 ){
|
|
|
this.statusIndex = 3 //已兑换
|
|
|
+ this.pageNum = 1
|
|
|
this.getListTwo()
|
|
|
}
|
|
|
},
|
|
@@ -393,7 +395,7 @@
|
|
|
if (this.total > this.pageNum * 20) {
|
|
|
setTimeout(() => {
|
|
|
++this.pageNum
|
|
|
- this.getList()
|
|
|
+ this.statusIndex == 3?this.getListTwo():this.getList()
|
|
|
}, 500)
|
|
|
} else {
|
|
|
uni.$u.toast('已经到底了')
|