62 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
// 登录
 | 
						|
import third from '@/sheep/api/third';
 | 
						|
import SocialApi from '@/sheep/api/member/social';
 | 
						|
 | 
						|
// TODO 芋艿:等后面搞 App 再弄
 | 
						|
const socialType = 32; // 社交类型 - 微信开放平台
 | 
						|
 | 
						|
const load = async () => {};
 | 
						|
 | 
						|
// 微信开放平台移动应用授权登陆
 | 
						|
const login = () => {
 | 
						|
  return new Promise(async (resolve, reject) => {
 | 
						|
    const loginRes = await uni.login({
 | 
						|
      provider: 'weixin',
 | 
						|
      onlyAuthorize: true,
 | 
						|
    });
 | 
						|
    debugger
 | 
						|
    if (loginRes.errMsg == 'login:ok') {
 | 
						|
      const res = await third.wechat.login({
 | 
						|
        platform: 'openPlatform',
 | 
						|
        shareInfo: uni.getStorageSync('shareLog') || {},
 | 
						|
        payload: encodeURIComponent(
 | 
						|
          JSON.stringify({
 | 
						|
            code: loginRes.code,
 | 
						|
          }),
 | 
						|
        ),
 | 
						|
      });
 | 
						|
 | 
						|
      if (res.error === 0) {
 | 
						|
        resolve(true);
 | 
						|
      }
 | 
						|
    } else {
 | 
						|
      uni.showToast({
 | 
						|
        icon: 'none',
 | 
						|
        title: loginRes.errMsg,
 | 
						|
      });
 | 
						|
    }
 | 
						|
    resolve(false);
 | 
						|
  });
 | 
						|
};
 | 
						|
 | 
						|
// 微信 App 解除绑定
 | 
						|
const unbind = async (openid) => {
 | 
						|
  const { code } = await SocialApi.socialUnbind(socialType, openid);
 | 
						|
  return code === 0;
 | 
						|
};
 | 
						|
 | 
						|
// 获得社交信息
 | 
						|
async function getInfo() {
 | 
						|
  const { code, data } = await SocialApi.getSocialUser(socialType);
 | 
						|
  if (code !== 0) {
 | 
						|
    return undefined;
 | 
						|
  }
 | 
						|
  return data;
 | 
						|
}
 | 
						|
 | 
						|
export default {
 | 
						|
  load,
 | 
						|
  login,
 | 
						|
  getInfo
 | 
						|
};
 |