forked from vincenth520/pinche_xcx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
65 lines (65 loc) · 1.53 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"pages": [
"pages/index/index",
"pages/my/index",
"pages/my/info",
"pages/my/list",
"pages/my/fav",
"pages/my/mydyn",
"pages/info/index",
"pages/info/add",
"pages/info/edit",
"pages/dynamic/index",
"pages/dynamic/add",
"pages/comment/index",
"pages/notice/index",
"pages/msg/index",
"pages/msg/list",
"pages/my/appointment",
"pages/appointment/index"
],
"window": {
"backgroundTextStyle": "dark",
"navigationBarBackgroundColor": "#f4de3b",
"navigationBarTitleText": "同城拼车",
"navigationBarTextStyle": "black",
"enablePullDownRefresh": true
},
"tabBar": {
"color": "#aaa",
"selectedColor": "#ddc40b",
"backgroundColor": "#fff",
"borderStyle": "black",
"list": [
{
"pagePath": "pages/index/index",
"text": "拼车",
"iconPath": "img/auto.png",
"selectedIconPath": "img/auto1.png"
},
{
"pagePath": "pages/dynamic/index",
"text": "动态",
"iconPath": "img/favorite.png",
"selectedIconPath": "img/favorite1.png"
},
{
"pagePath": "pages/msg/index",
"text": "消息",
"iconPath": "img/comments.png",
"selectedIconPath": "img/comments1.png"
},
{
"pagePath": "pages/my/index",
"text": "我的",
"iconPath": "img/account.png",
"selectedIconPath": "img/account1.png"
}
]
},
"networkTimeout": {
"request": 10000,
"downloadFile": 10000
},
"debug": true
}