forked from fbi-templates/fbi-project-weapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
57 lines (57 loc) · 1.46 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
{
"pages": [
"pages/forward/forward",
"pages/login/login",
"pages/customer/customer",
"pages/achievement/achievement",
"pages/income/income",
"pages/my/my",
"pages/myDetail/myDetail",
"pages/protocol/protocol"
],
"window": {
"navigationBarBackgroundColor": "#eff2f5",
"navigationBarTextStyle": "black",
"navigationBarTitleText": "",
"backgroundColor": "#eff2f5",
"backgroundTextStyle": "light",
"enablePullDownRefresh": true
},
"tabBar": {
"color": "#fff",
"selectedColor": "#47a86c",
"backgroundColor": "#333",
"borderStyle": "none",
"list": [
{
"pagePath": "pages/customer/customer",
"iconPath": "images/customer.png",
"selectedIconPath": "images/customer_active.png",
"text": "我的客户"
},
{
"pagePath": "pages/achievement/achievement",
"iconPath": "images/achievement.png",
"selectedIconPath": "images/achievement_active.png",
"text": "我的业绩"
},
{
"pagePath": "pages/income/income",
"iconPath": "images/income.png",
"selectedIconPath": "images/income_active.png",
"text": "我的收益"
},
{
"pagePath": "pages/my/my",
"iconPath": "images/my.png",
"selectedIconPath": "images/my_active.png",
"text": "个人中心"
}
]
},
"networkTimeout": {
"request": 100000,
"downloadFile": 100000
},
"debug": true
}