-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
53 lines (53 loc) · 1.49 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
{
"pages": [
"pages/bookCity/bookCity",
"pages/category/category",
"pages/bookShelf/bookShelf",
"pages/mine/mine",
"pages/search/search",
"pages/bookDetails/bookDetails",
"pages/readingPage/readingPage",
"pages/novelList/novelList",
"pages/disclaimer/disclaimer"
],
"window": {
"navigationBarBackgroundColor": "#1f222c",
"navigationBarTitleText": "大麦说",
"navigationBarTextStyle": "white",
"backgroundColor": "#1f222c",
"backgroundTextStyle": "dark",
"enablePullDownRefresh": true
},
"tabBar": {
"color": "#87929f",
"selectedColor": "#f34921",
"backgroundColor": "#16191b",
"list": [
{
"pagePath": "pages/bookCity/bookCity",
"text": "书城",
"iconPath": "assets/images/book-city.png",
"selectedIconPath": "assets/images/book-city-checked.png"
},
{
"pagePath": "pages/category/category",
"text": "分类",
"iconPath": "assets/images/sort.png",
"selectedIconPath": "assets/images/sort-checked.png"
},
{
"pagePath": "pages/bookShelf/bookShelf",
"text": "书架",
"iconPath": "assets/images/book-shelf.png",
"selectedIconPath": "assets/images/book-shelf-checked.png"
},
{
"pagePath": "pages/mine/mine",
"text": "我的",
"iconPath": "assets/images/mine.png",
"selectedIconPath": "assets/images/mine-checked.png"
}
]
},
"sitemapLocation": "sitemap.json"
}