bug
This commit is contained in:
@@ -81,7 +81,7 @@ export default {
|
|||||||
}
|
}
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
if(res?.data){
|
if(res?.data){
|
||||||
this.integralList = this.current > 1 ? res.data.records:[...this.integralList, ...res.data.records]
|
this.integralList = this.current > 1 ? [...this.integralList, ...res.data.records]:res.data.records
|
||||||
this.$forceUpdate()
|
this.$forceUpdate()
|
||||||
this.flag = true
|
this.flag = true
|
||||||
}
|
}
|
||||||
@@ -108,7 +108,7 @@ export default {
|
|||||||
document.title = '积分审核'
|
document.title = '积分审核'
|
||||||
},
|
},
|
||||||
onReachBottom() {
|
onReachBottom() {
|
||||||
this.current ++
|
this.current ++,
|
||||||
this.getList()
|
this.getList()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -90,7 +90,7 @@ export default {
|
|||||||
}
|
}
|
||||||
}).then(res=>{
|
}).then(res=>{
|
||||||
if(res?.data) {
|
if(res?.data) {
|
||||||
this.data = this.current >1 ? res.data.records:[...this.data, ...res.data.records]
|
this.data = this.current >1 ? [...this.data, ...res.data.records]:res.data.records
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -79,7 +79,7 @@ export default {
|
|||||||
}
|
}
|
||||||
}).then(res=>{
|
}).then(res=>{
|
||||||
if(res?.data) {
|
if(res?.data) {
|
||||||
this.villagerList = this.current >1 ? res.data.records:[...this.villagerList,...res.data.records]
|
this.villagerList = this.current >1 ? [...this.villagerList,...res.data.records]:res.data.records
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user