-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathapp.json
38 lines (38 loc) · 1.05 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
{
"pages":[
"pages/index/index",
"pages/topic/topic",
"pages/create/create",
"pages/user/user",
"pages/userTopics/userTopics",
"pages/userMsg/userMsg"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "JS开发者社区",
"navigationBarTextStyle":"black"
},
"tabBar": {
"list": [{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "images/icon_tabBar_home.png",
"selectedIconPath": "images/icon_tabBar_home_selected.png"
}, {
"pagePath": "pages/create/create",
"text": "话题",
"iconPath": "images/icon_tabBar_write.png",
"selectedIconPath": "images/icon_tabBar_write_selected.png"
}, {
"pagePath": "pages/user/user",
"text": "我的",
"iconPath": "images/icon_tabBar_user.png",
"selectedIconPath": "images/icon_tabBar_user_selected.png"
}],
"color": "#666",
"selectedColor": "#5886CC",
"backgroundColor": "#fff",
"borderStyle": "white"
}
}