-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathapp.json
44 lines (44 loc) · 1.2 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
{
"pages": [
"pages/index/index",
"pages/usercenter/usercenter",
"pages/comment/comment",
"pages/detailList/detailList",
"pages/detailInfo/detailInfo",
"pages/booking/booking",
"pages/introduction/introduction",
"pages/orderList/orderList",
"pages/userInfo/userInfo"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "家政服务",
"navigationBarTextStyle": "black",
"backgroundColor": "#eeeeee"
},
"tabBar": {
"color": "#545454",
"selectedColor": "#1a99fc",
"list": [
{
"pagePath": "pages/index/index",
"text": "服务下单",
"iconPath": "./images/order_normal.png",
"selectedIconPath": "./images/order_selected.png"
},
{
"pagePath": "pages/introduction/introduction",
"text": "客服评价",
"iconPath": "./images/order_normal.png",
"selectedIconPath": "./images/order_selected.png"
},
{
"pagePath": "pages/usercenter/usercenter",
"text": "会员中心",
"iconPath": "./images/my_normal.png",
"selectedIconPath": "./images/my_selected.png"
}
]
}
}