-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
44 lines (44 loc) · 1.16 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
{
"pages": [
"pages/book/book",
"pages/index/index",
"pages/book-pages/book-page",
"pages/category/category",
"pages/my/my"
],
"window": {
"navigationBarBackgroundColor": "#35495e",
"navigationBarTextStyle": "white",
"navigationBarTitleText": "松江年鉴",
"backgroundColor": "#000000",
"backgroundTextStyle": "light",
"enablePullDownRefresh": false
},
"tabBar": {
"color": "#ccc",
"selectedColor": "#35495e",
"borderStyle": "white",
"backgroundColor": "#f9f9f9",
"list": [
{
"text": "首页",
"pagePath": "pages/book/book",
"iconPath": "images/home.png",
"selectedIconPath": "images/home-actived.png"
},
{
"text": "检索",
"pagePath": "pages/category/category",
"iconPath": "images/nav_sort.png",
"selectedIconPath": "images/nav_sort_on.png"
},
{
"text": "我的",
"pagePath": "pages/my/my",
"iconPath": "images/profile.png",
"selectedIconPath": "images/profile-actived.png"
}
]
},
"sitemapLocation": "sitemap.json"
}