forked from cs-cj/go_small_wx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
54 lines (52 loc) · 1.44 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
{
"pages":[
"pages/index/index",
"pages/classification/classification",
"pages/article/article",
"pages/topic/topic",
"pages/topic_tabs/topic_tabs",
"pages/project/project",
"pages/resource/resource",
"pages/book/book",
"pages/reading/reading",
"pages/article_detail/article_detail",
"pages/topic_detail/topic_detail",
"pages/project_detail/project_detail",
"pages/resource_detail/resource_detail",
"pages/mine/mine",
"pages/login/login",
"pages/register/register"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#57bc72",
"navigationBarTitleText": "GO",
"navigationBarTextStyle":"white"
},
"tabBar": {
"backgroundColor": "#fff",
"borderStyle": "white",
"color": "#676767",
"selectedColor": "#57bc72",
"list": [
{
"pagePath": "pages/index/index",
"text": "GO",
"iconPath": "pages/images/logo_grey_0.png",
"selectedIconPath": "pages/images/logo_0.png"
},
{
"pagePath": "pages/classification/classification",
"text": "分类",
"iconPath": "pages/images/classification_grey_0.png",
"selectedIconPath": "pages/images/classification_0.png"
},
{
"pagePath": "pages/mine/mine",
"text": "我的",
"iconPath": "pages/images/mine_grey.png",
"selectedIconPath": "pages/images/mine_green.png"
}
]
}
}