-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathapp.json
43 lines (43 loc) · 1.04 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
{
"pages":[
"pages/feeds/feeds",
"pages/search/search",
"pages/mine/mine",
"pages/person/person",
"pages/issue/issue"
],
"window":{
"backgroundTextStyle":"light",
"backgroundColor": "#eee",
"navigationBarBackgroundColor": "#f85f48",
"navigationBarTitleText": "分答 - 付费语音问答",
"navigationBarTextStyle":"white",
"enablePullDownRefresh":false
},
"tabBar": {
"color": "#231815",
"selectedColor": "#f85f48",
"borderStyle": "white",
"backgroundColor": "#f9f9f9",
"list": [
{
"pagePath": "pages/feeds/feeds",
"text": "收听",
"iconPath": "img/audient.png",
"selectedIconPath": "img/audient1.png"
},
{
"pagePath": "pages/search/search",
"text": "找人",
"iconPath": "img/search.png",
"selectedIconPath": "img/search1.png"
},
{
"pagePath": "pages/mine/mine",
"text": "我的",
"iconPath": "img/mine.png",
"selectedIconPath": "img/mine1.png"
}
]
}
}