// pages/hotProduct/index.js var app = getApp(); Page({ /** * 页面的初始数据 */ data: { liveList:[], scrollHeight: 0, hasAuno: false,//是否限制条数 page: 1, pages: 1, }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { var that = this; wx.getSystemInfo({ success: function (res) { that.setData({ scrollHeight: res.windowHeight - 10 }); } }); this.getList(); }, getList:function() { wx.showLoading({ title: '加载中', }) var that = this; app.func.req('/api/kwaiShowToday/livingIndex','get',{ 'pagesize': 20, 'just_goods': 1, 'page': that.data.page }, function(res) { that.setData({ hasAuno: res.auno==4403||res.errno==4003 }) wx.hideLoading({ title: '加载中', }) if(res && res.errno == 0){ //成功 var data = res.rst; data.data.forEach((item) => { item.minute = that.formatDuring(item.minute) }) that.setData({ pages: data.pageInfo.pages, liveList: that.data.liveList.concat(data.data) }) } },function(err){ console.log(err) }) }, bindDownLoad() { if(!this.data.hasAuno) { if(this.data.page0?days:'') + (parseInt(hours)>0?hours:'') + (parseInt(minutes)>0?minutes:''); }, /** * 生命周期函数--监听页面初次渲染完成 */ onReady: function () { }, /** * 生命周期函数--监听页面显示 */ onShow: function () { }, /** * 生命周期函数--监听页面隐藏 */ onHide: function () { }, /** * 生命周期函数--监听页面卸载 */ onUnload: function () { }, /** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh: function () { }, /** * 页面上拉触底事件的处理函数 */ onReachBottom: function () { }, /** * 用户点击右上角分享 */ onShareAppMessage: function () { } })