修复签到记录不显示问题

This commit is contained in:
hupeng
2021-06-23 15:28:23 +08:00
parent cff4c9bbde
commit 312d43e80b

View File

@ -55,7 +55,7 @@ export default {
getSignMonth(that.page, that.limit).then(res => { getSignMonth(that.page, that.limit).then(res => {
that.loading = false; that.loading = false;
//apply();js将一个数组插入另一个数组; //apply();js将一个数组插入另一个数组;
that.signList.push.apply(that.signList, res.data); that.signList.push.apply(that.signList, res.data.list);
that.loadend = res.data.length < that.limit; //判断所有数据是否加载完成; that.loadend = res.data.length < that.limit; //判断所有数据是否加载完成;
that.page = that.page + 1; that.page = that.page + 1;
}); });