forked from natee/wxapp-2048
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
34 lines (33 loc) · 796 Bytes
/
app.json
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
{
"pages":[
"pages/index/index",
"pages/logs/logs",
"pages/2048/2048"
],
"window":{
"navigationBarBackgroundColor":"#333",
"navigationBarTitleText":"2048小游戏"
},
"tabBar": {
"color": "#353535",
"selectedColor": "#3cc51f",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [{
"pagePath": "pages/index/index",
"text": "游戏",
"iconPath": "./assets/diamond.png",
"selectedIconPath": "./assets/diamond.png"
}, {
"pagePath": "pages/logs/logs",
"text": "日志",
"iconPath": "./assets/star.png",
"selectedIconPath": "./assets/star.png"
}]
},
"networkTimeout": {
"request": 10000,
"downloadFile": 10000
},
"debug": false
}