var app = getApp(); var util = require('../../utils/util.js'); Page({ /** * 页面的初始数据 */ data: { info: [], member_info: {} }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { var that = this; if (!util.check_login()) { this.setData({ needAuth: true }) } else { this.getUser(); this.getData(); } }, /** * 授权成功回调 */ authSuccess: function () { let that = this; this.setData({ needAuth: false }, () => { that.getData(); }) }, getData: function () { wx.showLoading(); var token = wx.getStorageSync('token'); let that = this; app.util.request({ url: 'entry/wxapp/user', data: { controller: 'distribution.get_commission_info', token: token }, dataType: 'json', success: function (res) { wx.hideLoading(); if (res.data.code == 0) { that.setData({ info: res.data.data }) } else { wx.showModal({ title: '提示', content: res.data.msg, showCancel: false, success(res) { if (res.confirm) { console.log('用户点击确定') wx.reLaunch({ url: '/lionfish_comshop/pages/user/me', }) } } }) } } }) }, getUser: function(){ var token = wx.getStorageSync('token'); let that = this; app.util.request({ url: 'entry/wxapp/user', data: { controller: 'user.get_user_info', token: token }, dataType: 'json', success: function (res) { wx.hideLoading(); if (res.data.code == 0) { let commiss_diy_name = res.data.commiss_diy_name || '分销'; wx.setNavigationBarTitle({ title: `会员${commiss_diy_name}`, }) that.setData({ member_info: res.data.data }) } else { //is_login that.setData({ needAuth: true }) wx.setStorage({ key: "member_id", data: null }) } } }) }, /** * 生命周期函数--监听页面显示 */ onShow: function () { } })