index.js 834 Bytes
let app = getApp();
Page({
  data: {
    authorized: true,
    canIUse: wx.canIUse('button.open-type.getUserInfo'),
    tipsRuleVisible: false,
  },
  onShareAppMessage() {},
  onLoad(options) {
    this.initData();
  },
  initData() {
    app.queryIndex().then((result) => {
      console.log("result:", result);
    })
  },
  // 开始互动游戏
  onStartHandler() {
    let path = "createWish";
    app.router.push({
      path: "createWish"
    })
  },
  // 显示规则页面
  onShowRuleHandler() {
    this.setData({
      tipsRuleVisible: true
    })
  },
  // 子组件事件
  evtcomp(evt) {
    let {
      name,
      data
    } = evt.detail;
    switch (name) {

      case "_evt_hide_mask":
        this.setData({
          tipsRuleVisible: false
        })
        break;

      default:
        break;
    }
  },
})