rank-gift.js 610 Bytes
let app = getApp();
Page({
  data: {
    authorizeVisible: false,
    giftRankTipsCompVisible: true,
  },
  onShareAppMessage() {},
  showAuth() {
    this.setData({
      authorizeVisible: true
    })
  },
  onLoad(options) {},
  // 隐藏蒙层
  hideMask() {
    this.setData({
      authorizeVisible: false,
      giftRankTipsCompVisible: false,
    })
  },
  // 子组件事件
  evtcomp(evt) {
    let {
      name,
      data
    } = evt.detail;
    switch (name) {

      // 隐藏弹窗
      case "_evt_hide_mask":
        this.hideMask();
        break;

      default:
        break;
    }
  },
})