-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
46 lines (45 loc) · 1.2 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
{
"pages":[
"pages/index/index",
"pages/logs/logs",
"pages/my/my",
"pages/hs/hs",
"pages/user/user"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "WeChat",
"navigationBarTextStyle":"black",
"enablePullDownRefresh":true
},
"tabBar":{
"color": "#333",
"selectedColor": "white",
"backgroundColor": "#777",
"borderStyle":"white",
"list":[
{
"pagePath":"pages/index/index",
"text":"首页",
"iconPath":"images/index/01 (1).png",
"selectedIconPath":"images/index/01 (2).png"
},{
"pagePath":"pages/logs/logs",
"text":"发现",
"iconPath":"images/index/01 (3).png",
"selectedIconPath":"images/index/01 (6).png"
},{
"pagePath":"pages/my/my",
"text":"消息",
"iconPath":"images/index/01 (5).png",
"selectedIconPath":"images/index/01 (8).png"
},{
"pagePath":"pages/hs/hs",
"text":"我的",
"iconPath":"images/index/01 (4).png",
"selectedIconPath":"images/index/01 (7).png"
}
]
}
}