微信小程序自动授权弹窗(自定义)

用户进到小程序的第一个页面不是tab主页面,而是授权页面。

 
/*微信授权登陆 */
  getuserinfo:function(e){
    if(e.detail.userInfo){
      console.log('授权通过')
      app.globalData.userInfo = e.detail.userInfo
      wx.reLaunch({
        url: '/pages/home/home',
      })
    }else{
      console.log('拒绝授权')
      wx.showModal({
        title: '真香警告!'
      })
    }

你可能感兴趣的:(微信小程序)