-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
47 lines (46 loc) · 1.11 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
{
"pages":[
"pages/music/music",
"pages/index/index",
"pages/movie/movie",
"pages/logs/logs",
"pages/myInfo/myInfo"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#e8e8e8",
"navigationBarTitleText": "WeChat",
"navigationBarTextStyle":"black",
"backgroundColor": "#0ff",
"enablePullDownRefresh":"true"
},
"tabBar": {
"position":"bottom",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "imgs/首页.png",
"selectedIconPath": "imgs/首页2.png"
},
{
"pagePath": "pages/music/music",
"text": "音乐",
"iconPath": "imgs/音频.png",
"selectedIconPath": "imgs/音频2.png"
},
{
"pagePath": "pages/movie/movie",
"text": "视频",
"iconPath": "imgs/视频.png",
"selectedIconPath": "imgs/视频2.png"
},
{
"pagePath": "pages/logs/logs",
"text": "日志",
"iconPath": "imgs/日志.png",
"selectedIconPath": "imgs/日志2.png"
}
]
}
}