// 上拉加载 onReachBottom() { var page = this.data.page, ifPage = this.data.ifPage, list = this.data.list page++; app.ajax("/Goods/integral_index", { user_id: wx.getStorageSync('userId'), page, }, (e) => { if (e.data.res == 1 && e.data.data.mall_goods.length) { list = list.concat(e.data.data.mall_goods); this.setData({ list, ifPage: true, page }) } else { this.setData({ ifPage: false, }) } }) },