gift-shop.js 795 Bytes
let app = getApp();
Page({
  data: {
    authorizeVisible: false,
    orderSubmitSuccessTipsCompVisible: true,
    productList: ["", "", ""]
  },
  onShareAppMessage() {},
  showAuth() {
    this.setData({
      authorizeVisible: true
    })
  },
  onLoad(options) {},
  /**
   * 显示礼物详情
   */
  onShowGiftDetailHandler() {
    app.router.push({
      path: "giftDetail"
    });
  },
  // 隐藏蒙层
  hideMask() {
    this.setData({
      authorizeVisible: false,
      orderSubmitSuccessTipsCompVisible: false,
    })
  },
  // 子组件事件
  evtcomp(evt) {
    let {
      name,
      data
    } = evt.detail;
    switch (name) {

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

      default:
        break;
    }
  },
})