-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
41 lines (41 loc) · 1 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
{
"pages": [
"pages/story/recommend/recommend",
"pages/story/detail/detail",
"pages/book/index",
"pages/me/index",
"pages/logs/logs",
"pages/me/copyright/copyright",
"pages/me/search/search",
"pages/me/login/login",
"pages/me/mylike/mylike"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"backgroundColor": "#fff",
"navigationBarTitleText": "故事读本",
"navigationBarTextStyle": "black"
},
"tabBar": {
"color": "#7A7E83",
"selectedColor": "#3cc51f",
"backgroundColor": "#fff",
"borderStyle": "black",
"list": [
{
"pagePath": "pages/story/recommend/recommend",
"text": "推荐",
"iconPath": "image/home.png",
"selectedIconPath": "image/home.png"
},
{
"pagePath": "pages/me/index",
"text": "我的",
"iconPath": "image/me.png",
"selectedIconPath": "image/me.png"
}
]
},
"sitemapLocation": "sitemap.json"
}