nativeLogin.js 1.88 KB
import event from '../../utils/event.js'
import { getLoginButtonType } from '../../libs/login/login.js'

Page({

  /**
   * 页面的初始数据
   */
  data: {
    loginText: '微信登录',
    loginButtonType: '',
    loginTips: ''
  },

  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
    let that = this;
    event.on('user-login-success', () => {
      // 返回上一页
    });
    event.on('change-login-status', params => {
      that.setData({
        loginText: params.text || '微信登录',
        loginTips: params.tips || ''
      });
    });
    event.on('user-login-callback', this.loginCallback);
    event.on('user-get-phonenumber-error', this.getPhonenumberError);
  },

  getPhonenumberError(error) {
    wx.navigateTo({
      url: `../login/index`,
    })
  },

  loginCallback(res) {
    const buttonType = getLoginButtonType();
    this.setData({
      loginButtonType: buttonType
    });
    if (!buttonType) {
      this.goReferer(); // 如果不需要绑定手机则返回前一页
    }
  },

  goReferer() {
    console.log('执行返回');
    wx.navigateBack({
      delta: 1
    });
  },

  /**
   * 生命周期函数--监听页面初次渲染完成
   */
  onReady: function () {

  },

  /**
   * 生命周期函数--监听页面显示
   */
  onShow: function () {
    const buttonType = getLoginButtonType();
    this.setData({
      loginButtonType: buttonType
    });
  },

  /**
   * 生命周期函数--监听页面隐藏
   */
  onHide: function () {

  },

  /**
   * 生命周期函数--监听页面卸载
   */
  onUnload: function () {

  },

  /**
   * 页面相关事件处理函数--监听用户下拉动作
   */
  onPullDownRefresh: function () {

  },

  /**
   * 页面上拉触底事件的处理函数
   */
  onReachBottom: function () {

  },

  /**
   * 用户点击右上角分享
   */
  onShareAppMessage: function () {

  }
})