-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathapp.json
43 lines (43 loc) · 1.21 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/detail/detail",
"pages/post/post",
"pages/privilege-list/privilege-list",
"pages/privilege-detail/privilege-detail",
"pages/personal-information/personal-information",
"pages/identity/identity",
"pages/logs/logs"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#38373d",
"navigationBarTitleText": "拼单神器",
"navigationBarTextStyle":"white"
},
"tabBar": {
"borderStyle": "white",
"backgroundColor": "#f6f6f8",
"selectedColor": "#e12c15",
"list": [{
"pagePath": "pages/index/index",
"text": "拼单",
"iconPath": "images/order.png",
"selectedIconPath": "images/order-active.png"
},{
"pagePath": "pages/privilege-list/privilege-list",
"text": "优惠信息",
"iconPath": "images/privilege.png",
"selectedIconPath": "images/privilege-active.png"
}, {
"pagePath": "pages/personal-information/personal-information",
"text": "我的",
"iconPath": "images/personal.png",
"selectedIconPath": "images/personal-active.png"
}]
},
"networkTimeout": {
"request": 10000,
"downloadFile": 10000
}
}