addHexiao.js 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. var app = getApp();
  2. var util = require('../../utils/util.js');
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. qrcode: ''
  9. },
  10. /**
  11. * 生命周期函数--监听页面加载
  12. */
  13. onLoad: function (options) {
  14. if (!util.check_login()) {
  15. wx.redirectTo({
  16. url: '/lionfish_comshop/pages/user/me',
  17. })
  18. }
  19. this.get_hx_qrcode();
  20. },
  21. get_hx_qrcode: function () {
  22. var that = this;
  23. var token = wx.getStorageSync('token');
  24. wx.showLoading();
  25. app.util.request({
  26. 'url': 'entry/wxapp/index',
  27. 'data': {
  28. controller: 'community.get_community_bind_member_qrcode',
  29. token: token
  30. },
  31. dataType: 'json',
  32. success: function (res) {
  33. console.log(res)
  34. if (res.data.code == 0) {
  35. console.log(res)
  36. that.setData({ qrcode: res.data.qrcode })
  37. } else {
  38. // todo
  39. }
  40. wx.hideLoading();
  41. }
  42. })
  43. },
  44. /**
  45. * 生命周期函数--监听页面显示
  46. */
  47. onShow: function () {
  48. }
  49. })