-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
52 lines (50 loc) · 1.29 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
45
46
47
48
49
50
51
52
{
"pages": [
"pages/index/index",
"pages/article_list/article_list",
"pages/article/article",
"pages/order/order",
"pages/case/case",
"pages/case_list/case_list",
"pages/about/about"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#599fff",
"navigationBarTitleText": "装修小程序",
"navigationBarTextStyle": "white"
},
"tabBar": {
"color": "#515151",
"selectedColor": "#599fff",
"borderStyle": "white",
"backgroundColor": "white",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "images/tabbar/h.png",
"selectedIconPath": "images/tabbar/h1.png"
},
{
"pagePath": "pages/order/order",
"text": "预约",
"iconPath": "images/tabbar/s.png",
"selectedIconPath": "images/tabbar/s1.png"
},
{
"pagePath": "pages/case_list/case_list",
"text": "案例",
"iconPath": "images/tabbar/t.png",
"selectedIconPath": "images/tabbar/t1.png"
},
{
"pagePath": "pages/about/about",
"text": "关于",
"iconPath": "images/tabbar/w.png",
"selectedIconPath": "images/tabbar/w1.png"
}
]
},
"sitemapLocation": "sitemap.json"
}