-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapp.json
47 lines (47 loc) · 1.15 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
{
"pages": [
"pages/index/index",
"pages/topic/index",
"pages/member/index",
"pages/retry/index",
"pages/posts/detail",
"pages/topic/detail"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "WeeWPress+",
"navigationBarTextStyle": "black"
},
"tabBar": {
"color": "#999999",
"selectedColor": "#00CEC9",
"backgroundColor": "#fafafa",
"borderStyle": "white",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "images/tb_home.png",
"selectedIconPath": "images/tb_home_active.png"
},
{
"pagePath": "pages/topic/index",
"text": "专题",
"iconPath": "images/tb_topic.png",
"selectedIconPath": "images/tb_topic_active.png"
},
{
"pagePath": "pages/member/index",
"text": "我的",
"iconPath": "images/tb_member.png",
"selectedIconPath": "images/tb_member_active.png"
}
]
},
"networkTimeout": {
"request": 30000,
"downloadFile": 20000
},
"sitemapLocation": "sitemap.json"
}