forked from xiehui999/SmallAppForQQ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
42 lines (40 loc) · 1.1 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
{
"pages":[
"pages/message/message",
"pages/contact/contact",
"pages/dynamic/dynamic",
"pages/dynamic/music/music",
"pages/index/index",
"pages/logs/logs"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#12b7f4",
"navigationBarTitleText": "WeChatForQQ",
"navigationBarTextStyle":"white",
"backgroundColor": "#fbf9fe"
},
"tabBar": {
"color": "#9B9DB1",
"selectedColor": "#3cc51f",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [{
"pagePath": "pages/message/message",
"iconPath": "images/tab_message_normal.png",
"selectedIconPath": "images/tab_message_selected.png",
"text": "消息"
}, {
"pagePath": "pages/contact/contact",
"iconPath": "images/tab_contact_normal.png",
"selectedIconPath": "images/tab_contact_selected.png",
"text": "联系人"
},
{
"pagePath": "pages/dynamic/dynamic",
"iconPath": "images/tab_dynamic_normal.png",
"selectedIconPath": "images/tab_dynamic_selected.png",
"text": "动态"
}]
}
}