-
Notifications
You must be signed in to change notification settings - Fork 10
/
app.json
51 lines (51 loc) · 1.63 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/index/index",
"pages/userInfo/userInfo",
"pages/userCenter/userCenter",
"pages/bookCity/bookCity",
"pages/bookList/bookList",
"pages/rankList/rankList",
"pages/bookType/bookType",
"pages/bookTag/bookTag",
"pages/bookDetail/bookDetail",
"pages/bookListDetail/bookListDetail",
"pages/searchPage/searchPage",
"pages/moreBook/moreBook"
],
"window": {
"backgroundColor": "#f6f6f6",
"backgroundTextStyle": "dark",
"navigationBarBackgroundColor": "#ff8862",
"navigationBarTitleText": "",
"navigationBarTextStyle": "white",
"enablePullDownRefresh": true
},
"tabBar": {
"backgroundColor": "#f6f6f6",
"color": "#999",
"selectedColor": "#ff8862",
"borderStyle": "white",
"list": [{
"selectedIconPath": "assets/home-light.png",
"iconPath": "assets/home.png",
"pagePath": "pages/index/index",
"text": "首页"
},{
"selectedIconPath": "assets/find-light.png",
"iconPath": "assets/find.png",
"pagePath": "pages/bookCity/bookCity",
"text": "书城"
},{
"selectedIconPath": "assets/market-light.png",
"iconPath": "assets/market.png",
"pagePath": "pages/bookList/bookList",
"text": "书单"
},{
"selectedIconPath": "assets/more-light.png",
"iconPath": "assets/more.png",
"pagePath": "pages/userCenter/userCenter",
"text": "我的"
}]
}
}