-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
38 lines (37 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/message/message",
"pages/contacts/contacts",
"pages/dynamic/dynamic",
"pages/module/singlechat/singlechat",
"pages/module/music/music"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#13b7f6",
"navigationBarTitleText": "QQ-小程序版",
"navigationBarTextStyle":"white"
},
"tabBar": {
"color": "#9E9BAC",
"selectedColor": "#00BBF4",
"borderStyle": "black",
"backgroundColor": "#FFFFFF",
"list": [{
"pagePath": "pages/message/message",
"iconPath": "res/image/message_normal.png",
"selectedIconPath": "res/image/message_selected.png",
"text": "消息"
}, {
"pagePath": "pages/contacts/contacts",
"iconPath": "res/image/contact_normal.png",
"selectedIconPath": "res/image/contact_selected.png",
"text": "联系人"
}, {
"pagePath": "pages/dynamic/dynamic",
"iconPath": "res/image/dynamic_normal.png",
"selectedIconPath": "res/image/dynamic_selected.png",
"text": "动态"
}]
}
}