-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
37 lines (37 loc) · 1000 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
{
"pages": [
"pages/index/index",
"pages/knowledge/knowledge",
"pages/sortKnowledgeInfo/sortKnowledgeInfo",
"pages/about/about"
],
"window": {
"navigationBarBackgroundColor": "#fff",
"backgroundColor": "#fff",
"navigationBarTitleText": "垃圾分类小站",
"navigationBarTextStyle": "black"
},
"tabBar": {
"list": [
{
"pagePath": "pages/index/index",
"iconPath": "asserts/images/sort.png",
"selectedIconPath": "asserts/images/sort-selected.png",
"text": "分类"
},
{
"pagePath": "pages/knowledge/knowledge",
"iconPath": "asserts/images/book.png",
"selectedIconPath": "asserts/images/book-selected.png",
"text": "知识"
},
{
"pagePath": "pages/about/about",
"iconPath": "asserts/images/info.png",
"selectedIconPath": "asserts/images/info-selected.png",
"text": "关于"
}
]
},
"sitemapLocation": "sitemap.json"
}