-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.json
40 lines (40 loc) · 1.16 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
{
"pages": [
"pages/home/home",
"pages/to_order/to_order",
"pages/menu/menu",
"pages/location/location",
"pages/my/my",
"pages/ordered/ordered",
"pages/index/index",
"pages/logs/logs"
],
"window": {
"backgroundTextStyle": "white",
"navigationBarBackgroundColor": "#0097ff",
"navigationBarTitleText": "饿了吗",
"navigationBarTextStyle": "#FFC640"
},
"tabBar": {
"list": [
{
"pagePath": "pages/home/home",
"text": "首页",
"iconPath": "images/first/home.jpg",
"selectedIconPath": "images/first/home.jpg"
},
{
"pagePath": "pages/menu/menu",
"text": "订单",
"iconPath": "images/first/order.jpg",
"selectedIconPath": "images/first/order-selected.jpg"
},
{
"pagePath": "pages/my/my",
"text": "我的",
"iconPath": "images/first/my.jpg",
"selectedIconPath": "images/first/my-selected.jpg"
}
]
}
}