-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
38 lines (38 loc) · 956 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
35
36
37
38
{
"pages": [
"pages/index/index",
"pages/order/index"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "首页",
"navigationBarTextStyle": "black"
},
"sitemapLocation": "sitemap.json",
"tabBar": {
"color": "#cdcdcd",
"selectedColor": "#2c2c2c",
"borderStyle": "black",
"list": [
{
"iconPath": "/images/icon/home.png",
"selectedIconPath": "/images/icon/home-s.png",
"pagePath": "pages/index/index",
"text": "首页"
},
{
"iconPath": "/images/icon/order.png",
"selectedIconPath": "/images/icon/order-s.png",
"pagePath": "pages/order/index",
"text": "预约"
},
{
"iconPath": "/images/icon/user.png",
"selectedIconPath": "/images/icon/user-s.png",
"pagePath": "pages/index/index",
"text": "我的"
}
]
}
}