warrant: function () { //检测是否授权 console.log("onLoad====="); var that = this; wx.getUserInfo({ success: function (res) { var userInfo = res.userInfo; that.setData({ nickName: userInfo.nickName, avatarUrl: userInfo.avatarUrl, }) }, fail: function () { that.setData({ flag: false }) wx.showModal({ title: '警告', content: '请登录小灵通平台授权,才能正常领取红包,点击确定重新获取授权。', showCancel: false, mask: true, success: function (res) { if (res.confirm) { wx: wx.navigateTo({ url: '../star/star', }) 点击跳转回首页 wx.switchTab({ url: '../../index/index' }) that.setData({ flag: true }) } else if (res.cancel) { wx.switchTab({ url: '../../index/index' }) that.setData({ flag: true }) } } }) }, complete: function (res) { } }) //检测是否授权 },