var e = getApp(), a = e.globalData.setting, os = a, t = e.request, d = e.globalData; Page({ /** * 页面的初始数据 */ data: { iurl: a.imghost, tment_details: [], //预约详情 }, /** * 生命周期函数--监听页面加载 */ onLoad: function(options) { var th = this; var url = "http://localhost:8022/api/weshop/yy_fuwu_meirsxiangq"; wx.request({ url: url, success: function(res) { if (res.data.code == 0) { th.setData({ tment_details:res.data.data }) } } }) }, /** * 生命周期函数--监听页面显示 */ onShow: function() { }, })