// pages/order/order.js const app =getApp() Page({ /** * 页面的初始数据 */ data: { bookList: [], token: '', requestIp: '' }, getList: function () { var self = this wx.request({ url: self.data.requestIp + 'app/wechatprogram/listpagemyticket', header: { "token": self.data.token }, success: function (res) { self.setData({ bookList: res.data.rows }) } }) }, getToken: function () { var self = this wx.getStorage({ key: 'token', success: function (res) { console.log(res) self.setData({ token: res.data }) self.getList() }, }) }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { this.setData({ requestIp: app.globalData.requestIp }) this.getToken() }, /** * 生命周期函数--监听页面初次渲染完成 */ onReady: function () { }, /** * 生命周期函数--监听页面显示 */ onShow: function () { }, /** * 生命周期函数--监听页面隐藏 */ onHide: function () { }, /** * 生命周期函数--监听页面卸载 */ onUnload: function () { }, /** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh: function () { }, /** * 页面上拉触底事件的处理函数 */ onReachBottom: function () { }, /** * 用户点击右上角分享 */ onShareAppMessage: function () { } })