-
Notifications
You must be signed in to change notification settings - Fork 151
/
Copy pathapp.json
51 lines (51 loc) · 1.27 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/news/index",
"pages/news/detail",
"pages/news/manage",
"pages/subscibe/index",
"pages/subscibe/article",
"pages/found/index",
"pages/user/index"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "News Reader",
"navigationBarTextStyle": "black"
},
"tabBar": {
"color": "#333",
"selectedColor": "#d81e06",
"borderStyle": "white",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/news/index",
"iconPath": "image/icon-news.png",
"selectedIconPath": "image/icon-news-a.png",
"text": "新闻"
},
{
"pagePath": "pages/subscibe/index",
"iconPath": "image/icon-sub.png",
"selectedIconPath": "image/icon-sub-a.png",
"text": "订阅"
},
{
"pagePath": "pages/found/index",
"iconPath": "image/icon-like.png",
"selectedIconPath": "image/icon-like-a.png",
"text": "发现"
},
{
"pagePath": "pages/user/index",
"iconPath": "image/icon-user.png",
"selectedIconPath": "image/icon-user-a.png",
"text": "我的"
}
]
},
"debug": true,
"sitemapLocation": "sitemap.json"
}