-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.json
53 lines (53 loc) · 1.27 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
52
53
{
"pages": [
"pages/welcome/welcome",
"pages/book/book",
"pages/girl/girl",
"pages/mine/mine",
"pages/video/video",
"pages/movie/movie"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#d827d7",
"navigationBarTitleText": "友趣",
"navigationBarTextStyle": "white"
},
"tabBar": {
"color": "#626567",
"selectedColor": "#d827d7",
"backgroundColor": "#FBFBFB",
"borderStyle": "white",
"list": [
{
"pagePath": "pages/book/book",
"text": "图书",
"iconPath": "images/book_nor.png",
"selectedIconPath": "images/book_sel.png"
},
{
"pagePath": "pages/girl/girl",
"text": "美女",
"iconPath": "images/girl_nor.png",
"selectedIconPath": "images/girl_sel.png"
},
{
"pagePath": "pages/movie/movie",
"text": "视频",
"iconPath": "images/video_nor.png",
"selectedIconPath": "images/video_sel.png"
},
{
"pagePath": "pages/mine/mine",
"text": "我的",
"iconPath": "images/mine_nor.png",
"selectedIconPath": "images/mine_sel.png"
}
]
},
"networkTimeout": {
"request": 10000,
"downloadFile": 10000
},
"debug": true
}