// pages/welfareMall/personal/personal.js import WelfareMall from '../../../api/welfareMall' import activity from '../../../api/activity' import {getMobileCache, getPhoneNumber as getPhoneNumberSync} from '../../../utils/user' const app = getApp(); Page({ /** * 页面的初始数据 */ data: { isLogin: false, mobileTop: 'TONY WU', countNum: 0, grayTheme:false }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { }, getCountNum: async function(){ /** * 福利社 */ let resBuy = await WelfareMall.getUserBuyCouponNum({ mobile: getMobileCache(), }); let resAward = await WelfareMall.getUserAwardCouponNum({ mobile: getMobileCache(), }); let resDraw = await WelfareMall.getUserDrawCouponNum({ mobile: getMobileCache(), }); let nums = Number(resBuy.data.notUseNum)+Number(resAward.data.notUseNum)+Number(resDraw.data.notUseNum) return nums; }, // 授权手机号 getPhoneNumber(e) { getPhoneNumberSync(e, async () => { let nums = await this.getCountNum(); this.setData({ isLogin: true, mobileTop: getMobileCache(), countNum: nums, }) }) }, // 授权手机号--历史订单 getPhoneNumberHis(e) { getPhoneNumberSync(e, async () => { let nums = await this.getCountNum(); this.setData({ isLogin: true, mobileTop: getMobileCache(), countNum: nums, }); const url = "../historical/historical" wx.navigateTo({ url }) }) }, // 授权手机号--意见反馈 getPhoneNumberFee(e) { getPhoneNumberSync(e, async () => { let nums = await this.getCountNum(); this.setData({ isLogin: true, mobileTop: getMobileCache(), countNum: nums, }); const url = "../feedback/feedback" wx.navigateTo({ url }) }) }, // 授权手机号--签到 getPhoneNumberSigin(e) { getPhoneNumberSync(e, async () => { let nums = await this.getCountNum(); this.setData({ isLogin: true, mobileTop: getMobileCache(), countNum: nums, }); const url = "../../signIn/activity/activity" wx.navigateTo({ url }) }) }, // 授权手机号--抽奖 getPhoneNumberLuck(e) { getPhoneNumberSync(e, async () => { let nums = await this.getCountNum(); this.setData({ isLogin: true, mobileTop: getMobileCache(), countNum: nums, }); const url = "./../luckDraw/index" wx.navigateTo({ url }) }) }, // 授权手机号--券包 getPhoneNumberCoupon(e) { getPhoneNumberSync(e, async () => { let nums = await this.getCountNum(); this.setData({ isLogin: true, mobileTop: getMobileCache(), countNum: nums, }); const url = "../../luckDraw/profile" wx.navigateTo({ url }) }) }, toHistorical(e) { const url = "../historical/historical?id=" + e.currentTarget.dataset.id wx.navigateTo({ url }) }, toFeedback(e) { const url = "../feedback/feedback?id=" + e.currentTarget.dataset.id wx.navigateTo({ url: url, }) }, toSigIn(e) { const url = "../../signIn/activity/activity?id=" + e.currentTarget.dataset.id wx.navigateTo({ url }) }, toLuck(e) { const url = "../../luckDraw/index?id=" + e.currentTarget.dataset.id wx.navigateTo({ url }) }, toCoupon(e) { const url = "../../luckDraw/profile?id=" + e.currentTarget.dataset.id wx.navigateTo({ url }) }, /** * 生命周期函数--监听页面初次渲染完成 */ onReady: function () { }, /** * 生命周期函数--监听页面显示 */ onShow: async function () { this.setData({ grayTheme: app.globalData.grayTheme }) let userMobile = await activity.getMobileCache(); console.log(userMobile) if (userMobile.length !== 0) { this.setData({ isLogin: true, mobileTop: userMobile, }) } if(this.data.isLogin){ let nums = await this.getCountNum(); this.setData({ countNum: nums, }) } }, /** * 生命周期函数--监听页面隐藏 */ onHide: function () { }, /** * 生命周期函数--监听页面卸载 */ onUnload: function () { }, /** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh: function () { }, /** * 页面上拉触底事件的处理函数 */ onReachBottom: function () { }, /** * 用户点击右上角分享 */ onShareAppMessage: function () { } })