-
Notifications
You must be signed in to change notification settings - Fork 6
/
app.json
42 lines (42 loc) · 1.05 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
{
"pages":[
"pages/latest/latest",
"pages/hotest/hotest",
"pages/classify/classify",
"pages/detail/detail",
"pages/topicsDetail/topicsDetail"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "WeChat",
"navigationBarTextStyle":"black",
"enablePullDownRefresh": true
},
"tabBar": {
"color": "#000",
"selectedColor": "#56abe4",
"backgroundColor": "#fff",
"borderStyle": "white",
"list": [
{
"pagePath": "pages/latest/latest",
"text": "最新",
"iconPath": "images/latest.png",
"selectedIconPath": "images/latest_on.png"
},
{
"pagePath": "pages/hotest/hotest",
"text": "热门",
"iconPath": "images/hotest.png",
"selectedIconPath": "images/hotest_on.png"
},
{
"pagePath": "pages/classify/classify",
"text": "分类",
"iconPath": "images/classify.png",
"selectedIconPath": "images/classify_on.png"
}
]
}
}