-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
45 lines (45 loc) · 1.12 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
{
"pages": [
"pages/login/login",
"pages/bookshelf/bookshelf",
"pages/details/details",
"pages/bookCity/bookCity",
"pages/bookCats/bookCats",
"pages/reader/reader",
"pages/search/search",
"pages/rank/rank",
"pages/help/help"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "看书小助手",
"navigationBarTextStyle": "black"
},
"tabBar": {
"color": "#333",
"selectedColor": "#cb1c36",
"backgroundColor": "#fff",
"list": [
{
"iconPath": "img/mybook.png",
"selectedIconPath": "img/selectedMybook.png",
"pagePath": "pages/bookshelf/bookshelf",
"text": "书架"
},
{
"iconPath": "img/book.png",
"selectedIconPath": "img/selectedBook.png",
"pagePath": "pages/bookCity/bookCity",
"text": "书城"
},
{
"iconPath": "img/search.png",
"selectedIconPath": "img/selectedSearch.png",
"pagePath": "pages/search/search",
"text": "搜索"
}
]
},
"sitemapLocation": "sitemap.json"
}