-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathapp.json
51 lines (51 loc) · 1.44 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
50
51
{
"pages":[
"pages/index/index",
"pages/index/detail",
"pages/login/login",
"pages/membercenter/membercenter",
"pages/recommend/recommend",
"pages/attention/attention"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#000",
"navigationBarTitleText": "",
"navigationBarTextStyle":"white",
"backgroundColor": "#eaeaea"
},
"tabBar": {
"color": "black",
"borderStyle": "white",
"selectedColor": "rgb(176,170,168)",
"backgroundColor": "white",
"list": [{
"pagePath": "pages/index/index",
"text": "精华",
"iconPath": "images/tabBar/tabBar_essence_click_icon.png",
"selectedIconPath": "images/tabBar/tabBar_essence_icon.png"
},
{
"pagePath": "pages/recommend/recommend",
"text": "推荐关注",
"iconPath": "images/tabBar/tabBar_new_click_icon.png",
"selectedIconPath": "images/tabBar/tabBar_new_icon.png"
},
{
"pagePath": "pages/attention/attention",
"text": "关注",
"iconPath": "images/tabBar/tabBar_friendTrends_click_icon.png",
"selectedIconPath": "images/tabBar/tabBar_friendTrends_icon.png"
},
{
"pagePath": "pages/membercenter/membercenter",
"text": "我",
"iconPath": "images/tabBar/tabBar_me_click_icon.png",
"selectedIconPath": "images/tabBar/tabBar_me_icon.png"
}]
},
"networkTimeout": {
"request": 15000
},
"debug":false
}