-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathapp.json
52 lines (52 loc) · 1.35 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
{
"pages":[
"pages/index/index",
"pages/chat/chat",
"pages/article/index",
"pages/article/info",
"pages/article/search",
"pages/center/index",
"pages/center/history",
"pages/center/author",
"pages/center/about",
"pages/center/logs",
"pages/center/appreciate",
"pages/chat/index"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "Binz Blog",
"navigationBarTextStyle":"black",
"navigationStyle": "custom"
},
"tabBar": {
"selectedColor": "#0094F3",
"list": [
{
"pagePath": "pages/index/index",
"iconPath":"static/image/basics.png",
"selectedIconPath":"static/image/basics_cur.png",
"text": "首页"
},
{
"pagePath": "pages/article/index",
"iconPath": "static/image/component.png",
"selectedIconPath": "static/image/component_cur.png",
"text": "博文"
},
{
"pagePath": "pages/chat/index",
"iconPath": "static/image/plugin.png",
"selectedIconPath": "static/image/plugin_cur.png",
"text": "聊天室"
},
{
"pagePath": "pages/center/index",
"iconPath": "static/image/about.png",
"selectedIconPath": "static/image/about_cur.png",
"text": "我的"
}
]
}
}