由于多处调用登录功能,故将此方法封装以减少代码量
在调用登录方法前要先通过wx.login获取code,并在调用函数时传入
以下为登陆封装函数:
function getUserProfile (code) {
return new Promise((resolve, reject) => {
wx.getUserProfile({
desc: '授权头像/昵称以使用完整功能', // 声明获取用户个人信息后的用途,后续会展示在弹窗中,请谨慎填写
success: res => {
wx.showLoading({
title: '登录中...',
mask: true
})
loginAuth (res.encryptedData, res.iv,</