修改拼团列表分页无法使用的问题

This commit is contained in:
Gao xiaosong
2020-09-13 21:33:47 +08:00
parent c412b80a3c
commit 3cb20117b0
2 changed files with 179 additions and 175 deletions

View File

@ -94,7 +94,7 @@
page: that.currentPage,
size: that.size
}).then(res => {
that.liveList = [...that.liveList, ...res.data.content];
that.liveList = that.liveList.concat(res.data.content)
this.currentPage++;
this.loaded = res.data.content.length < that.size;
this.loading = false;