// pages/welfareMall/personal/personal.js import WelfareMall from '../../../api/welfareMall' import activity from '../../../api/activity' import {getMobileCache, getPhoneNumberNew as getPhoneNumberSync} from '../../../utils/user' const app = getApp(); Page({ /** * 页面的初始数据 */ data: { isLogin: false, mobileTop: '', countNum: 0, grayTheme:false, navigationList:[], couponPath: false, avatarUrl : 'https://mmbiz.qpic.cn/mmbiz/icTdbqWNOwNRna42FI242Lcia07jQodd2FJGIYQfG0LAJGFxM4FbnQP6yfMxBgJ0F3YRqJCJ1aPAK2dQagdusBZg/0', hasUserInfo:false, personHeadList: [], staffImgList: [], }, onChooseAvatar(e) { console.log(e.detail) this.setData({ avatarUrl: e.detail.avatarUrl }) }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { }, getCountNum: async function(){ /** * 福利社 */ let resBuy = await WelfareMall.getUserCouponSnNum({ mobile: getMobileCache(), }); return Number(resBuy.data.num) }, // 授权手机号 getPhoneNumber(e) { getPhoneNumberSync(e, async () => { let nums = await this.getCountNum(); this.setData({ isLogin: true, mobileTop: getMobileCache(), countNum: nums, }) }) }, // 授权手机号--跳转导航栏 getPhoneNav(e) { getPhoneNumberSync(e, async () => { let nums = await this.getCountNum(); this.setData({ isLogin: true, mobileTop: getMobileCache(), countNum: nums, }); this.goToCoupon(e); }) }, // 授权手机号--跳转导航栏 getPathCoupon(e) { console.log(e) getPhoneNumberSync(e, async () => { let nums = await this.getCountNum(); console.log(nums) this.setData({ isLogin: true, mobileTop: getMobileCache(), countNum: nums, }); this.getCouponPath(e); }) }, // 员工通道 getStaff(e) { console.log(e) getPhoneNumberSync(e, async () => { let nums = await this.getCountNum(); console.log(nums) this.setData({ isLogin: true, mobileTop: getMobileCache(), countNum: nums, }); this.toStaff(e); }) }, // 动态获取导航栏 async getIndexList(){ let res = await WelfareMall.getPersonalData(); await this.getPath(res.data.navigationList); let info = await WelfareMall.getIndexList(); this.setData({ navigationList:res.data.navigationList, personHeadList:info.data.personHeadList, staffImgList:info.data.staffImgList, }) }, // 导航栏地址链接跳转 goToCoupon:function(e){ var appId = e.currentTarget.dataset.appid; var path = e.currentTarget.dataset.path; if(appId && path){ wx.navigateToMiniProgram({ appId: appId, path: path, success(res) { // 打开成功 } }) } if(!appId && path){ wx.navigateTo({ url: path, }) } }, /** * 活动列表我的券包路径 * @param {*} nums */ getPath: async function(res){ if(res != null && res.length > 0){ for(var i = 0;i { console.log(res); var openId = wx.getStorageSync('loginInfo').openId; var mobile = getMobileCache(); if(openId && mobile){ activity.saveUser(openId,mobile,res.userInfo.avatarUrl,res.userInfo.nickName); var userInfo = { mobile:mobile, avatarUrl:res.userInfo.avatarUrl, nickName:res.userInfo.nickName, } wx.setStorageSync('userInfo',userInfo); } this.setData({ userInfo: res.userInfo, hasUserInfo: true }) // this.userRecruitInfo(res.userInfo.openId) } }) }, handlePageSizes(e) { this.setData({ bodyImageHeight: e.detail.bodyImageHeight }) }, /** * 生命周期函数--监听页面隐藏 */ onHide: function () { }, /** * 生命周期函数--监听页面卸载 */ onUnload: function () { }, /** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh: function () { }, /** * 页面上拉触底事件的处理函数 */ onReachBottom: function () { }, /** * 用户点击右上角分享 */ onShareAppMessage: function () { } })