var app = getApp(); var WXAPI = require('../../utils/server.js'); Page({ data: { navTab: [{'type':'验证码登录','status':0},{'type':'密码登录','status':1}], currentIndex: 1, click: false, //是否显示弹窗内容 option: false, //显示弹窗或关闭弹窗的操作动画 logoimg: '', loadtitle:'', thvm:{}, account: '', password: '', }, //密码登录to验证码登录 switchTab: function(e) { // this.landing = false // this.codeLoginBtnStatus = false // this.phone_codeStatus1 = false // this.account = '' // this.password = '' // this.tabbar_isShow = 1 this.setData({ currentIndex: e.currentTarget.dataset.idx, tabbar_isShow: e.currentTarget.dataset.item.status, }); }, // 用户点击显示弹窗 setCloses:function(){ wx.showToast({ title: '没有授权,不能进入小程序个人中心!', icon: 'none', duration: 2000 }) this.clickPup() }, clickPup: function (vm) { this.setData({ logoimg: app.globalData.logoimg, loadtitle: app.globalData.title, thvm: vm ? vm:'' }) let _that = this; if (!_that.data.click) { _that.setData({ click: true, }) } if (_that.data.option) { _that.setData({ option: false, }) // 关闭显示弹窗动画的内容,不设置的话会出现:点击任何地方都会出现弹窗,就不是指定位置点击出现弹窗了 setTimeout(() => { _that.setData({ click: false, }) }, 500) } else { _that.setData({ option: true }) } }, //获取用户信息新接口 agreeGetUser: function (e) { let that = this; wx.showLoading({ title: '正在登入', success: 2000 }); console.log(e.detail.userInfo) if (e.detail.errMsg == 'getUserInfo:ok') { //获取成功设置状态 app.globalData.isLogin = true; wx.setStorageSync('isLogin', true); //设置用户信息本地存储 try { wx.setStorageSync('userInfo', e.detail.userInfo); } catch (e) { wx.showToast({ title: '系统提示:网络错误!', icon: 'warn', duration: 1500, }) } that.setData({ isLogin: false }) that.getOP(e.detail.userInfo) } else { wx.showToast({ title: '没有授权,不能执行该操作!', icon: 'none', duration: 2000 }) //没有授权需要弹框 that.setData({ isLogin: true }); } }, accountInput: function(e) { this.setData({ valueId: "nickname", account: e.detail.value }) }, passwordInput: function(e) { this.setData({ valueId: "nickname", password: e.detail.value }) }, login: function () { var that = this; WXAPI.login({ storeId: 239, phone: that.data.account, password: that.data.password, }).then(res => { if (res.code == 200) { var data = res.data app.globalData.accessId = data.access_id; wx.setStorageSync('accessId', data.access_id) wx.setStorageSync('isLogin', true); wx.setStorageSync('userInfo', data.data); wx.navigateBack() // wx.showToast({ // title: '登录成功!', // success: 2000 // }); } else { wx.showToast({ title: res.message, icon: 'none', duration: 1500, }) } }); // wx.login({ // success: res => { // app.globalData.code = res.code // wx.setStorageSync('code', res.code) // }, // fail: function () { // wx.showToast({ // title: '系统提示:网络错误!', // icon: 'warn', // duration: 1500, // }) // } // }) // wx.getSetting({ // success: (res) => { // //没有授权需要弹框 // if (!res.authSetting['scope.userInfo']) { // that.setData({ // isLogin: true // }); // } else { // //判断用户已经授权。不需要弹框 // if (app.globalData.isLogin) { // that.setData({ // isLogin: false // }) // app.globalData.isLogin = true; // wx.setStorageSync('isLogin', true); // } else { // that.setData({ // isLogin: true // }); // } // } // }, // fail: function () { // wx.showToast({ // title: '系统提示:网络错误!', // icon: 'warn', // duration: 1500, // }) // } // }) }, getOP: function (res) { //提交用户信息 获取用户id let that = this let thatplus = this.data.thvm app.getUserInfo('', '', res, function (){ let userInfo = res; var user = app.globalData.userInfo; app.globalData.userInfo['avatarUrl'] = userInfo.avatarUrl; // 头像 app.globalData.userInfo['nickName'] = userInfo.nickName; // 昵称 app.globalData.userInfo['gender'] = userInfo.gender; // 性别 wx.setStorageSync('userInfo', app.globalData.userInfo); //写入缓存 var nickName = userInfo.nickName; var avatarUrl = userInfo.avatarUrl; var gender = userInfo.gender; //性别 0:未知、1:男、2:女 wx.request({ url: app.d.ceshiUrl + '&action=user&m=material', method: 'post', data: { openid: app.globalData.userInfo.openid, nickName: nickName, avatarUrl: avatarUrl, gender: gender }, header: { 'Content-Type': 'application/x-www-form-urlencoded' }, success: function (res) { wx.showToast({ title: '授权成功!', success: 2000 }); setTimeout(function () { that.clickPup() thatplus.onLoad() }, 1800); } }) }) } })