-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathapp.json
More file actions
47 lines (47 loc) · 1.08 KB
/
app.json
File metadata and controls
47 lines (47 loc) · 1.08 KB
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
{
"pages": [
"pages/index/index",
"pages/home/home",
"pages/book/book",
"pages/mine/mine",
"pages/book/room/room",
"pages/mine/order/order",
"pages/authorize/authorize"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "宾馆",
"navigationBarTextStyle": "black"
},
"tabBar": {
"list": [
{
"pagePath": "pages/home/home",
"text": "首页",
"iconPath": "images/home.png",
"selectedIconPath": "images/home1.png"
},
{
"pagePath": "pages/book/book",
"text": "预订",
"iconPath": "images/book.png",
"selectedIconPath": "images/book1.png"
},
{
"pagePath": "pages/mine/mine",
"text": "我的",
"iconPath": "images/mine.png",
"selectedIconPath": "images/mine1.png"
}
],
"color": "#bfbfbf",
"selectedColor": "#fe3131",
"backgroundColor": "white"
},
"networkTimeout": {
"request": 10000,
"downloadFile": 10000
},
"debug": true
}