forked from colakang/nyis_ask_wechat_plugin_frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
executable file
·61 lines (61 loc) · 1.56 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
52
53
54
55
56
57
58
59
60
61
{
"pages": [
"pages/index/index",
"pages/ask/ask",
"pages/user/user",
"pages/test/test",
"pages/detail/detail",
"pages/answer/answer",
"pages/news/news",
"pages/search/search",
"pages/tag/tag",
"pages/newslist/newslist"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#303030",
"navigationBarTitleText": "小纽问答",
"navigationBarTextStyle": "white"
},
"tabBar": {
"color": "#ffffff",
"selectedColor": "#8CCEFD",
"borderStyle": "white",
"backgroundColor": "#303030",
"list": [
{
"pagePath": "pages/index/index",
"iconPath": "images/icon_API.png",
"selectedIconPath": "images/icon_API.png",
"text": "热门"
},
{
"pagePath": "pages/ask/ask",
"iconPath": "images/icon_component.png",
"selectedIconPath": "images/icon_component.png",
"text": " 提问"
},
{
"pagePath": "pages/user/user",
"iconPath": "images/icon_component.png",
"selectedIconPath": "images/icon_component.png",
"text": " 与我相关"
},
{
"pagePath": "pages/search/search",
"iconPath": "images/icon_component.png",
"selectedIconPath": "images/icon_component.png",
"text": "搜索"
},
{
"pagePath": "pages/newslist/newslist",
"iconPath": "images/icon_component.png",
"selectedIconPath": "images/icon_component.png",
"text": "新闻"
}
]
},
"networkTimeout": {
"request": 120000
}
}