-
Notifications
You must be signed in to change notification settings - Fork 197
/
app.json
42 lines (42 loc) · 1.05 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
{
"pages":[
"pages/index/index",
"pages/logs/logs",
"pages/list/list",
"pages/order/balance/balance",
"pages/mine/mine",
"pages/order/list/list",
"pages/order/detail/detail"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#FF9C35",
"navigationBarTitleText": "CoCo都可",
"navigationBarTextStyle":"white"
},
"tabBar": {
"color": "#8a8a8a",
"selectedColor": "#FF9C35",
"borderStyle": "black",
"list": [
{
"selectedIconPath": "images/home_s.png",
"iconPath": "images/home.png",
"pagePath": "pages/index/index",
"text": "首页"
},
{
"selectedIconPath": "images/order_s.png",
"iconPath": "images/order.png",
"pagePath": "pages/order/list/list",
"text": "订单"
},
{
"selectedIconPath": "images/mine_s.png",
"iconPath": "images/mine.png",
"pagePath": "pages/mine/mine",
"text": "我的"
}
]
}
}