Authored by QC-L

修复登录授权失败的问题 review by 黄敬囿

... ... @@ -316,12 +316,13 @@ export const getPhoneNumber = (e) => {
export const getLoginButtonType = () => {
// const globalData = getGlobalData();
const userInfo = getStorageUserInfo();
const unionid = wx.getStorageSync('unionid');
if (userInfo && userInfo.uid) {
return ''; // 已经是登录状态,合法用户
}
let isUnionID = userInfo && userInfo.union_id;// 如果有unionID情况
let isUnionID = unionid;// 如果有unionID情况
let isPhoneNumber = isUnionID ? !(userInfo && userInfo.uid) : false; // 如果有unionID且没有uid,可以获取手机号自动绑定登录
if (!isUnionID) {
... ...