1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- // pages/components/auth/auth.js
- const api = require('../../../config');
- const getReq = require('../../../config').getReq;
- let app = getApp();
- Component({
- /**
- * 组件的属性列表
- */
- properties: {
- },
- /**
- * 组件的初始数据
- */
- data: {
- phone_iv: '',
- phone_encryptedData: '',
- showAuthName:true,
- showAuthPhone:false,
- userInfoE:{},
- },
- /**
- * 组件的方法列表
- */
- methods: {
- userPhoneHandler: function(e) {
- // console.log(e.detail.errMsg)
- // console.log(e.detail.iv)
- // console.log(e.detail.encryptedData)
- this.phone_encryptedData = e.detail.encryptedData
- this.phone_iv = e.detail.iv
- this.wxauthen(this.userInfoE)
- },
- userInfoHandler(e)
- {
- if (e.detail.errMsg == "getUserInfo:ok")
- {
- app.globalData.userInfo = e.detail.userInfo;
- app.globalData.userInfo.nickname = e.detail.userInfo.nickName;
- this.userInfoE = e
- this.wxauthen(e)
- }
- },
- wxauthen: function (eInfo) {
- let userInfo = eInfo.detail.userInfo;
- if (app.globalData.userId.unionid) {
- userInfo = Object.assign({}, app.globalData.userId, app.globalData.userInfo);
- }
- else {
- let { encryptedData, iv, signature } = e.detail
- userInfo = Object.assign({}, { encryptedData }, { signature }, { iv }, userInfo)
- }
-
- let phoneInfo = { iv: this.phone_iv, encryptedData: this.phone_encryptedData }
- let params = {
- user_info: userInfo,
- phone_info: phoneInfo,
- act: "login",
- op: "wxauthen"
- }
- let self = this;
- getReq(app,params, function (res) {
- if (res.code == 200) {
- let datas = res.datas;
- app.member_id = datas.member_id
- if (datas.hasmobile == false) {
- self.setData({showAuthName:false,showAuthPhone:true})
- }
- else {
- self.triggerEvent('getAuth', {
- userInfo
- })
- }
- }
- else {
- app.relogin();
- wx.showToast({
- icon: 'none',
- title: '登陆遇到一点麻烦,请重试~~~',
- duration: 2000
- })
- }
- })
- }
- }
- })
|