join.js 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. const api = require('../../../api/api.js');
  2. const util = require("../../../utils/util");
  3. var app = getApp();
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. img: '',
  10. myqr_blur: 0, //背景模糊值
  11. myqr_show: true,
  12. authImg: 'https://7a68-zhaijieshi-3guecm78383ca692-1307626841.tcb.qcloud.la/wx/qw/sq.png',
  13. authBtn: 'https://7a68-zhaijieshi-3guecm78383ca692-1307626841.tcb.qcloud.la/wx/qw/sq-btn.png',
  14. xiaomi: "cloud://zhaijieshi-3guecm78383ca692.7a68-zhaijieshi-3guecm78383ca692-1307626841/wx/qw/jingzhi-xiaomi.png",
  15. xiaoying: 'cloud://zhaijieshi-3guecm78383ca692.7a68-zhaijieshi-3guecm78383ca692-1307626841/wx/qw/jingzhi-xiaoying.png',
  16. code: "",
  17. },
  18. /**
  19. * 生命周期函数--监听页面加载
  20. */
  21. onLoad: function (options) {
  22. let that = this;
  23. // util.request(api.CPQrCode, {
  24. // channel: (options.channel=='hm'?'盒马':'私域'),
  25. // bookSn:options.id
  26. // }).then(function (res) {
  27. // if (res.errno == 0) {
  28. let rd = (Math.random() * 10) % 2;
  29. that.setData({
  30. img: (rd == 0 ? this.data.xiaoying : this.data.xiaomi)
  31. })
  32. // // } else {
  33. // // util.showErrorToast(res.errmsg);
  34. // // }
  35. // }).catch(res => {
  36. // console.info(res)
  37. // util.showErrorToast(res.errMsg);
  38. // })
  39. },
  40. showMyQr() {
  41. this.setData({
  42. myqr_blur: 8,
  43. myqr_show: true
  44. });
  45. },
  46. goCloseMyqr: function () { //关闭分享图片的弹层
  47. this.setData({
  48. myqr_blur: 0,
  49. myqr_show: false
  50. });
  51. },
  52. qrtouchstart: function () {
  53. this.setData({
  54. myqr_blur: 0,
  55. myqr_show: false
  56. });
  57. },
  58. /**
  59. * 生命周期函数--监听页面初次渲染完成
  60. */
  61. onReady: function () {
  62. },
  63. /**
  64. * 生命周期函数--监听页面显示
  65. */
  66. onShow: function () {
  67. wx.hideHomeButton();
  68. },
  69. /**
  70. * 生命周期函数--监听页面隐藏
  71. */
  72. onHide: function () {
  73. },
  74. /**
  75. * 生命周期函数--监听页面卸载
  76. */
  77. onUnload: function () {
  78. },
  79. /**
  80. * 页面相关事件处理函数--监听用户下拉动作
  81. */
  82. onPullDownRefresh: function () {
  83. },
  84. /**
  85. * 页面上拉触底事件的处理函数
  86. */
  87. onReachBottom: function () {
  88. },
  89. /**
  90. * 用户点击右上角分享
  91. */
  92. onShareAppMessage: function () {
  93. }
  94. })