index.js
839 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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_rule_tips":
this.setData({
tipsRuleVisible: false
})
break;
default:
break;
}
},
})