bug
This commit is contained in:
@@ -81,7 +81,7 @@ export default {
|
||||
}
|
||||
}).then(res => {
|
||||
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.flag = true
|
||||
}
|
||||
@@ -108,7 +108,7 @@ export default {
|
||||
document.title = '积分审核'
|
||||
},
|
||||
onReachBottom() {
|
||||
this.current ++
|
||||
this.current ++,
|
||||
this.getList()
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user