const app = getApp(); Page({ /** * 页面的初始数据 */ data: { userInfo:{}, hasUserInfo:false, canIUse:wx.canIUse('button.open-type.getUserInfo'), listData:[ { text:'"分类"频道展示', background:"#f1f1f1" }, { text: '提现金额增至15万元', background: "#f6f6f6" }, { text: '创建产品库', background: "#f1f1f1" }, { text: '参加平台活动', background: "#f6f6f6" }, { text: '黑名单数增至320', background: "#f1f1f1" }, { text: '拍品预展功能', background: "#f6f6f6" }, { text: '专属认证标记', background: "#f1f1f1" }, { text: '增加点赞次数', background: "#f6f6f6" }, ] }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { if(app.globalData.userInfo){ this.setData({ userInfo:app.globalData.userInfo, hasUserInfo:true }) }else if (this.data.canIUse) { app.userInfoReadyCallback = res => { this.setData({ userInfo: res.userInfo, hasUserInfo: true }) } }else{ wx.getUserInfo({ success: res => { app.globalData.userInfo = res.userInfo this.setData({ userInfo: res.userInfo, hasUserInfo: true }) } }) } }, /** * 生命周期函数--监听页面初次渲染完成 */ onReady: function () { }, /** * 生命周期函数--监听页面显示 */ onShow: function () { }, /** * 生命周期函数--监听页面隐藏 */ onHide: function () { }, /** * 生命周期函数--监听页面卸载 */ onUnload: function () { }, /** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh: function () { }, /** * 页面上拉触底事件的处理函数 */ onReachBottom: function () { } })