-
Notifications
You must be signed in to change notification settings - Fork 17
/
app.json
39 lines (39 loc) · 927 Bytes
/
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
{
"pages": [
"pages/index/index",
"pages/logs/logs",
"pages/pusher/pusher",
"pages/player/player"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "WeChat",
"navigationBarTextStyle": "black"
},
"tabBar": {
"color": "#a9b7b7",
"selectedColor": "#11cd6e",
"borderStyle": "white",
"list": [
{
"selectedIconPath": "images/live.png",
"iconPath": "images/live.png",
"pagePath": "pages/player/player",
"text": "直播"
},
{
"selectedIconPath": "images/push.png",
"iconPath": "images/push.png",
"pagePath": "pages/pusher/pusher",
"text": "推流"
},
{
"selectedIconPath": "images/my.png",
"iconPath": "images/my.png",
"pagePath": "pages/index/index",
"text": "我的"
}
]
}
}