-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
40 lines (40 loc) · 1.09 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/analysis_result/analysis_result",
"pages/knowledge_detail/knowledge_detail",
"pages/component_analysis/component_analysis",
"pages/about/about",
"pages/crowdDetail/crowdDetail",
"pages/ingredients_result/ingredients_result",
"pages/ingredients_detail/ingredients_detail"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "ColorUI",
"navigationStyle": "custom",
"navigationBarTextStyle": "white"
},
"tabBar": {
"borderStyle": "black",
"list": [
{
"pagePath": "pages/index/index",
"iconPath": "static/images/index.png",
"selectedIconPath": "static/images/index_cur.png",
"text": "首页"
},
{
"pagePath": "pages/about/about",
"iconPath": "static/images/about.png",
"selectedIconPath": "static/images/about_cur.png",
"text": "关于"
}
]
},
"usingComponents": {
"cu-custom": "/colorui/components/cu-custom"
},
"sitemapLocation": "sitemap.json"
}