-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.json
39 lines (39 loc) · 1.19 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
{
"pages": [
"page/index/index",
"page/detail/detail",
"page/company/company",
"page/history/history",
"page/about/about"
],
"window": {
"backgroundTextStyle": "dark",
"backgroundColor": "#f2f2f2",
"navigationBarBackgroundColor": "#1296db",
"navigationBarTitleText": "可贴快递",
"navigationBarTextStyle": "white",
"enablePullDownRefresh": true
},
"tabBar": {
"color": "#999",
"selectedColor": "#1296db",
"backgroundColor": "#f7f7fa",
"borderStyle": "white",
"list": [{
"pagePath": "page/index/index",
"text": "查询快递",
"iconPath": "images/search.png",
"selectedIconPath": "images/search-selected.png"
}, {
"pagePath": "page/history/history",
"text": "历史纪录",
"iconPath": "images/history.png",
"selectedIconPath": "images/history-selected.png"
}, {
"pagePath": "page/about/about",
"text": "关于",
"iconPath": "images/about.png",
"selectedIconPath": "images/about-selected.png"
}]
}
}