-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathapp.json
87 lines (87 loc) · 2.39 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"pages": [
"pages/index/index",
"pages/hot/hot",
"pages/me/me",
"pages/system/system",
"pages/search/search",
"pages/login/login",
"pages/register/register",
"pages/mycollect/collect",
"pages/systemlist/systemlist",
"pages/about/about",
"pages/project/project",
"pages/notdo/notdo",
"pages/done/done",
"pages/todo/todo",
"pages/chapters/chapters",
"pages/chapterslist/chapterslist"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#1B82D1",
"navigationBarTitleText": "玩android",
"navigationBarTextStyle": "white",
"backgroundColor": "#f5f5f5",
"navigationStyle": "custom"
},
"networkTimeout": {
"request": 20000,
"connectSocket": 20000,
"uploadFile": 20000,
"downloadFile": 20000
},
"tabBar": {
"color": "#8A8A8A",
"selectedColor": "#1B82D1",
"backgroundColor": "#FFF",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "images/img_index.png",
"selectedIconPath": "images/img_index_click.png"
},
{
"pagePath": "pages/hot/hot",
"text": "热搜",
"iconPath": "images/img_hot.png",
"selectedIconPath": "images/img_hot_click.png"
},
{
"pagePath": "pages/system/system",
"text": "体系",
"iconPath": "images/img_tixi.png",
"selectedIconPath": "images/img_tixi_click.png"
},
{
"pagePath": "pages/chapters/chapters",
"text": "公众号",
"iconPath": "images/img_wxarticle.png",
"selectedIconPath": "images/img_wxarticle_click.png"
},
{
"pagePath": "pages/me/me",
"text": "我的",
"iconPath": "images/img_me.png",
"selectedIconPath": "images/img_me_click.png"
}
]
},
"usingComponents": {
"cu-custom": "/colorui/components/cu-custom",
"van-skeleton": "/dist/skeleton/index",
"van-search": "/dist/search/index",
"van-loading": "/dist/loading/index",
"van-tab": "/dist/tab/index",
"van-tabs": "/dist/tabs/index",
"van-sticky": "/dist/sticky/index",
"van-field": "/dist/field/index",
"van-button": "/dist/button/index",
"van-cell": "/dist/cell/index",
"van-cell-group": "/dist/cell-group/index",
"van-dialog": "/dist/dialog/index"
},
"debug": true,
"sitemapLocation": "sitemap.json"
}