-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
executable file
·43 lines (43 loc) · 1.07 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
{
"pages": [
"pages/index/index",
"pages/comment/comment",
"pages/shelf/shelf",
"pages/borrowHistory/borrowHistory",
"pages/bookDetail/bookDetail",
"pages/result/result",
"pages/mine/mine",
"pages/logs/logs",
"pages/message/message",
"pages/addbook/addbook"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#F9F9F9",
"navigationBarTitleText": "开发二部图书角",
"navigationBarTextStyle": "black",
"backgroundColor": "#F9F9F9"
},
"tabBar": {
"color": "#666666",
"selectedColor": "#4A89DC",
"backgroundColor": "#F9F9F9",
"borderStyle": "black",
"position": "bottom",
"list": [
{
"pagePath": "pages/shelf/shelf",
"text": "书架",
"iconPath": "/image/shelf_black.png",
"selectedIconPath": "/image/shelf_blue.png"
},
{
"pagePath": "pages/mine/mine",
"text": "我的",
"iconPath": "/image/mine_black.png",
"selectedIconPath": "/image/mine_blue.png"
}
]
},
"debug": false
}