-
Notifications
You must be signed in to change notification settings - Fork 4
/
app.json
57 lines (57 loc) · 1.43 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"pages": [
"pages/blog/blog",
"pages/blog-info/blog-info",
"pages/resume/resume",
"pages/sorts/sorts",
"pages/add-comment/add-comment",
"pages/sorts-log/blog",
"pages/search/search"
],
"window": {
"backgroundTextStyle": "dark",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "博客首页",
"navigationBarTextStyle": "black"
},
"tabBar": {
"color": "#333",
"backgroundColor": "#fff",
"selectedColor": "#1296db",
"list": [
{
"pagePath": "pages/blog/blog",
"text": "博客",
"iconPath": "static/images/blog.png",
"selectedIconPath": "static/images/blog-active.png"
},
{
"pagePath": "pages/sorts/sorts",
"text": "板块",
"iconPath": "static/images/sort.png",
"selectedIconPath": "static/images/sort-active.png"
},
{
"pagePath": "pages/search/search",
"text": "搜索",
"iconPath": "static/images/search.png",
"selectedIconPath": "static/images/search-active.png"
},
{
"pagePath": "pages/resume/resume",
"text": "关于",
"iconPath": "static/images/about.png",
"selectedIconPath": "static/images/about-active.png"
}
]
},
"networkTimeout": {
"request": 10000,
"downloadFile": 100000
},
"debug": true,
"sitemapLocation": "sitemap.json",
"useExtendedLib": {
"weui": true
}
}