BUG 27629

This commit is contained in:
aixianling
2022-02-23 15:25:29 +08:00
parent f85b24310b
commit 93fa7005f7

View File

@@ -133,8 +133,7 @@ export default {
if (this.current > res.data.pages) {
return
}
const records = this.current > 1 ? [...this.list, ...res.data.records] : res.data.records;
this.list = records
this.list = this.current > 1 ? [...this.list, ...res.data.records] : res.data.records
}
})
},