-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
34 lines (34 loc) · 831 Bytes
/
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
{
"pages": [
"pages/index/index",
"pages/me/me",
"pages/search/search",
"pages/search-result/search-result"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#000",
"navigationBarTitleText": "小商城",
"backgroundColor": "#000",
"navigationBarTextStyle": "white",
"enablePullDownRefresh": "true"
},
"tabBar": {
"selectedColor": "#e64340",
"borderStyle": "white",
"list": [
{
"pagePath": "pages/index/index",
"text": "搜索商品",
"iconPath": "images/search.png",
"selectedIconPath": "images/search_1.png"
},
{
"pagePath": "pages/me/me",
"text": "我的订单",
"iconPath": "images/order.png",
"selectedIconPath": "images/order_1.png"
}
]
}
}