-
Notifications
You must be signed in to change notification settings - Fork 4
/
app.json
49 lines (49 loc) · 1.39 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"pages": [
"pages/PlayerQuery/PlayerQuery",
"pages/AutoChess/AutoChess",
"pages/HeroData/HeroData",
"pages/loading/loading",
"pages/Query/Query",
"pages/Player/Player",
"pages/Match/Match"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#263238",
"navigationBarTitleText": "WeChat",
"navigationBarTextStyle": "white"
},
"sitemapLocation": "sitemap.json",
"tabBar": {
"color": "#fff",
"selectedColor": "#1296db",
"backgroundColor": "#263238",
"list": [
{
"pagePath": "pages/PlayerQuery/PlayerQuery",
"text": "小助手",
"iconPath": "images/PlayerQuery/icon/query.png",
"selectedIconPath": "images/PlayerQuery/icon/querySel.png"
},
{
"pagePath": "pages/Query/Query",
"text": "玩家资料",
"iconPath": "images/Query/icon/query.png",
"selectedIconPath": "images/Query/icon/querySel.png"
},
{
"pagePath": "pages/HeroData/HeroData",
"text": "英雄资料",
"iconPath": "images/HeroData/icon/hero.png",
"selectedIconPath": "images/HeroData/icon/heroSel.png"
},
{
"pagePath": "pages/AutoChess/AutoChess",
"text": "AutoChess",
"iconPath": "images/AutoChess/icon/chess.png",
"selectedIconPath": "images/AutoChess/icon/chessSel.png"
}
]
}
}