const util = require("../../../utils/util"); const api = require('../../../api/api.js'); Page({ /** * 页面的初始数据 */ data: { list: [], page: 1, limit: 10, totalPages: 1, filter:'' }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { }, makeCall(e){ let mobile = e.currentTarget.dataset.mobile; wx.makePhoneCall({ phoneNumber: mobile, }) }, getList(){ let that = this; util.request(api.ServantOpenBill, { page: that.data.page, limit: that.data.limit }).then(function(res) { console.log(res); if (res.errno === 0) { that.setData({ list: that.data.list.concat(res.data.list), totalPages: res.data.pages }); } }); }, /** * 生命周期函数--监听页面初次渲染完成 */ onReady: function () { }, /** * 生命周期函数--监听页面显示 */ onShow: function () { this.setData({ list:[] }) this.getList(); }, /** * 生命周期函数--监听页面隐藏 */ onHide: function () { }, /** * 生命周期函数--监听页面卸载 */ onUnload: function () { }, /** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh: function () { }, /** * 页面上拉触底事件的处理函数 */ onReachBottom: function () { if (this.data.totalPages > this.data.page) { this.setData({ page: this.data.page + 1 }); this.getList(); } else { wx.showToast({ title: '没有更多开单记录了', icon: 'none', duration: 2000 }); return false; } }, /** * 用户点击右上角分享 */ onShareAppMessage: function () { } })