-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.json
40 lines (39 loc) · 956 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
35
36
37
38
39
40
{
"pages": [
"pages/index/index",
"pages/home/home",
"pages/list/index",
"pages/login/login",
"pages/detail/index",
"pages/signin/signin"
],
"window": {
"defaultTitle": "开卷",
"allowsBounceVertical": "NO"
},
"tabBar": {
"textColor": "#DDDDDD",
"selectedColor": "#49A9EE",
"backgroundColor": "#FFFFFF",
"items": [
{
"pagePath": "pages/home/home",
"icon": "images/tabBars/icon_home.png",
"activeIcon": "images/tabBars/icon_home_HL.png",
"name": "首页"
},
{
"pagePath": "pages/list/index",
"icon": "images/tabBars/icon_ranking.png",
"activeIcon": "images/tabBars/icon_ranking_HL.png",
"name": "排行"
},
{
"pagePath": "pages/login/login",
"icon": "images/tabBars/icon_site.png",
"activeIcon": "images/tabBars/icon_site_HL.png",
"name": "设置"
}
]
}
}