-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest.js
30 lines (28 loc) · 899 Bytes
/
test.js
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
var tools = require("./routes/tools");
var my_menu = {
"button":[
{
"name":"步数",
"sub_button":[
{"type":"click","name":"当日","key":"WALK_TODAY"},
{"type":"click","name":"本周","key":"WALK_WEEK"}
]
},
{
"type":"click",
"name":"睡眠",
"key":"SLEEP"
},
{
"name":"其它",
"sub_button":[
{"type":"click","name":"排行榜","key":"RANKING"},
{"type":"click","name":"关注","key":"ATTENTION"},
{"type":"click","name":"信息录入","key":"ACHIEVEMENTS"},
{"type":"click","name":"金币商城","key":"COINS"},
{"type":"click","name":"环游世界","key":"WORLD"},
]
}]
}
tools.menuCreate(my_menu, function(err, result){
});