-
Notifications
You must be signed in to change notification settings - Fork 590
/
app.json
52 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
{
"pages": [
"pages/message/message",
"pages/contact/contact",
"pages/dynamic/dynamic",
"pages/dynamic/music/music",
"pages/message/chat/chat",
"pages/message/search/search",
"pages/index/index",
"pages/logs/logs",
"pages/study/directory"
],
"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": "动态"
},
{
"pagePath": "pages/study/directory",
"iconPath": "images/tab_dynamic_normal.png",
"selectedIconPath": "images/tab_dynamic_selected.png",
"text": "文章"
}
]
}
}