-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathapp.json
More file actions
43 lines (43 loc) · 1.13 KB
/
app.json
File metadata and controls
43 lines (43 loc) · 1.13 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
41
42
43
{
"pages": [
"pages/index/index",
"pages/index/markdown/markdown",
"pages/index/timeline/timeline",
"pages/index/list/list",
"pages/index/panel/panel",
"pages/about/about",
"pages/tree/tree"
],
"window": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "Growth",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"tabBar": {
"color": "#515151",
"selectedColor": "#13227a",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/index/index",
"iconPath": "/images/icons/icon_home.png",
"selectedIconPath": "/images/icons/icon_home_active.png",
"text": "首页"
},
{
"pagePath": "pages/tree/tree",
"iconPath": "/images/icons/icon_tree.png",
"selectedIconPath": "/images/icons/icon_tree_active.png",
"text": "技能树"
},
{
"pagePath": "pages/about/about",
"iconPath": "/images/icons/icon_me.png",
"selectedIconPath": "/images/icons/icon_me_active.png",
"text": "关于"
}
]
}
}