const app = getApp(); Page({ /** * 页面的初始数据 */ data: { list: [] }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { this.getList(); }, /** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh: function () { this.getList(); wx.stopPullDownRefresh(); }, /** * 页面上拉触底事件的处理函数 */ onReachBottom: function () { }, /** * 用户点击右上角分享 */ onShareAppMessage: function () { return { title: "晋爱人才", path: "/pages/home/home/home", }; }, getList() { let self = this; app.get('activity/site/all',function(res){ self.setData({list:res}); }); }, toDetail(e) { wx.navigateTo({ url: '/pages/site/detail/detail?id=' + e.currentTarget.dataset.id, }) } })