-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
40 lines (40 loc) · 1.04 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/index/index",
"pages/list/list",
"pages/order/checkout/checkout",
"pages/order/detail/detail",
"pages/order/list/list",
"pages/record/record"
],
"window": {
"backgroundColor": "#fff",
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#F24",
"navigationBarTitleText": "My shop",
"navigationBarTextStyle": "white"
},
"tabBar": {
"color": "#999",
"selectedColor": "#f24",
"borderStyle": "white",
"list": [{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "images/icon/index.png",
"selectedIconPath": "images/icon/index_c.png"
},{
"pagePath": "pages/order/list/list",
"text": "订单",
"iconPath": "images/icon/list.png",
"selectedIconPath": "images/icon/list_c.png"
},{
"pagePath": "pages/record/record",
"text": "我的",
"iconPath": "images/icon/my.png",
"selectedIconPath": "images/icon/my_c.png"
}]
},
"sitemapLocation": "sitemap.json",
"style": "v2"
}