forked from labirin/pickabook-wechatminiprogram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
51 lines (51 loc) · 1.3 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/my/index",
"pages/suggestions/index",
"pages/upload/index",
"pages/goods-details/index",
"pages/about/index",
"pages/search/index",
"pages/category/index",
"pages/qrcode/index",
"pages/qrcode-image/index",
"pages/library/library",
"pages/update/index",
"pages/bookshelf/bookshelf",
"pages/custom-label/index"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#D03232",
"navigationBarTextStyle": "white",
"backgroundColor": "#eeeeee",
"navigationBarTitleText": "Pick a Book"
},
"tabBar": {
"backgroundColor": "#FFFFFE",
"borderStyle": "#D3D3D3",
"selectedColor": "#D03232",
"color": "#131313",
"list": [
{
"pagePath": "pages/index/index",
"iconPath": "images/home-black.png",
"selectedIconPath": "images/home-red.png",
"text": "Home"
},
{
"pagePath": "pages/library/library",
"iconPath": "images/library-black.png",
"selectedIconPath": "images/library-red.png",
"text": "Library"
},
{
"pagePath": "pages/my/index",
"iconPath": "images/user-black.png",
"selectedIconPath": "images/user-red.png",
"text": "Profile"
}
]
}
}