// packageI/warehouseFarm/warehouseFarmInventory/warehouseFarmInventory.js var app = getApp(); Page({ /** * 页面的初始数据 */ data: { list: [], stock: null, page: 1, //分页数,当前页数 isLoadMore: true, //判断是否要加载更多的标志 total_page: 0 //总页数 }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { this.getData(); }, getData() { let urlStr = app.getNetAddresss("plugin.warehouse.frontend.controllers.stock.records"); app._postNetWork({ url: urlStr, data: { page: this.data.page }, success: (resdata) => { let res = resdata.data; if (res.result == 1) { this.setData({ list: res.data.list.data, stock: res.data.stock, total_page: res.data.list.last_page, isLoadMore: true }); } else { wx.showToast({ icon: "none", title: res.msg, duration: 1000, }); } }, fail: (res) => { console.log(res); }, }); }, _getMoreData() { this.data.isLoadMore = false; // 防止多次请求分页数据 if (this.data.page >= this.data.total_page) { return; } else { this.data.page += 1; let urlStr = app.getNetAddresss("plugin.warehouse.frontend.controllers.stock.records"); urlStr += `&page=${this.data.page}`; app._postNetWork({ url: urlStr, success: (resdata) => { let res = resdata.data; this.data.isLoadMore = true; if (res.result === 1) { let nextPageData = res.data.list.data; let list = this.data.list.concat(nextPageData); this.setData({ list }); } else { this.data.page = this.data.page - 1; this.data.isLoadMore = false; } } }); } }, /** * 生命周期函数--监听页面初次渲染完成 */ onReady: function () { }, /** * 生命周期函数--监听页面显示 */ onShow: function () { }, /** * 生命周期函数--监听页面隐藏 */ onHide: function () { }, /** * 生命周期函数--监听页面卸载 */ onUnload: function () { }, /** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh: function () { if (this.data.isLoadMore) { this._getMoreData(); } else { console.log('没有更多数据'); } }, /** * 页面上拉触底事件的处理函数 */ onReachBottom: function () { }, /** * 用户点击右上角分享 */ onShareAppMessage: function () { } });