-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
executable file
·40 lines (40 loc) · 1.01 KB
/
Copy pathapp.json
File metadata and controls
executable file
·40 lines (40 loc) · 1.01 KB
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/about/about",
"pages/query/query"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "ColorUI",
"navigationStyle": "custom",
"navigationBarTextStyle": "white"
},
"usingComponents": {
"cu-custom": "/colorui/components/cu-custom"
},
"sitemapLocation": "sitemap.json",
"tabBar": {
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "images/tabbar/index.png",
"selectedIconPath": "images/tabbar/index_cur.png"
},
{
"pagePath": "pages/query/query",
"text": "科室查询",
"iconPath": "images/tabbar/query.png",
"selectedIconPath": "images/tabbar/query_cur.png"
},
{
"pagePath": "pages/about/about",
"text": "关于",
"iconPath": "images/tabbar/about.png",
"selectedIconPath": "images/tabbar/about_cur.png"
}
]
}
}