wx_authority.js 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. // pages/wx_authority/wx_authority.js
  2. import { sharePage, isFn } from '../../utils/util.js'
  3. const { saveUserInfo, getWxloginCode } = getApp()
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. canIUseGetUserInfo: wx.canIUse('button.open-type.getUserInfo'),
  10. },
  11. /**
  12. * 生命周期函数--监听页面加载
  13. */
  14. onLoad: function (options) {
  15. getWxloginCode(code => {
  16. this.setData({ code })
  17. })
  18. },
  19. /**
  20. * 生命周期函数--监听页面初次渲染完成
  21. */
  22. onReady: function () {
  23. },
  24. /**
  25. * 生命周期函数--监听页面显示
  26. */
  27. onShow: function () {
  28. },
  29. /**
  30. * 生命周期函数--监听页面隐藏
  31. */
  32. onHide: function () {
  33. },
  34. /**
  35. * 生命周期函数--监听页面卸载
  36. */
  37. onUnload: function () {
  38. },
  39. /**
  40. * 页面相关事件处理函数--监听用户下拉动作
  41. */
  42. onPullDownRefresh: function () {
  43. },
  44. /**
  45. * 页面上拉触底事件的处理函数
  46. */
  47. onReachBottom: function () {
  48. },
  49. /**
  50. * 用户点击右上角分享
  51. */
  52. onShareAppMessage: function () {
  53. if (isFn(sharePage)) return sharePage()
  54. },
  55. /**
  56. * 获取微信用户信息
  57. */
  58. getUserInfoCtl: function (e) {
  59. const { detail } = e
  60. const { userInfo, errMsg = '触发获取微信用户信息失败' } = detail
  61. if (userInfo) {
  62. if (isFn(saveUserInfo)) saveUserInfo(detail, this.data.code)
  63. } else {
  64. wx.showToast({
  65. title: '触发微信授权失败',
  66. icon: 'none'
  67. })
  68. }
  69. },
  70. })