-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathapp.json
40 lines (40 loc) · 996 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
38
39
40
{
"pages": [
"pages/index/index",
"pages/logs/logs",
"pages/artical/artical",
"pages/about/about/about",
"pages/about/log/log",
"pages/about/test/list",
"pages/about/test/filter",
"pages/about/home/home"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "Qt那些事儿",
"navigationBarTextStyle": "black"
},
"style": "v2",
"sitemapLocation": "sitemap.json",
"tabBar": {
"color": "#7A7E83",
"selectedColor": "green",
"borderStyle": "black",
"backgroundColor": "#fff",
"list": [
{
"pagePath": "pages/index/index",
"text": "列表",
"iconPath": "images/index.png",
"selectedIconPath": "images/index_select.png"
},
{
"pagePath": "pages/about/home/home",
"text": "关于我",
"iconPath": "images/about.png",
"selectedIconPath": "images/about_select.png"
}
]
}
}