Browse Source

修复签到记录不显示问题

master
hupeng 4 years ago
parent
commit
312d43e80b
  1. 2
      pages/user/signIn/SignRecord/index.vue

2
pages/user/signIn/SignRecord/index.vue

@ -55,7 +55,7 @@ export default {
getSignMonth(that.page, that.limit).then(res => {
that.loading = false;
//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.page = that.page + 1;
});

Loading…
Cancel
Save