-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.json
44 lines (44 loc) · 1.12 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
{
"pages":[
"pages/test/home/home",
"pages/test/expert/expert",
"pages/test/about/about",
"pages/index/index",
"pages/logs/logs",
"pages/about/home/home"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "WeChat",
"navigationBarTextStyle":"black"
},
"usingComponents": {},
"tabBar": {
"custom": true,
"color": "#aaa",
"selectedColor": "#39b54a",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/test/home/home",
"iconPath": "/images/tabbar/home.png",
"selectedIconPath": "/images/tabbar/home_cur.png",
"text": "主页"
},
{
"pagePath": "pages/test/expert/expert",
"iconPath": "/images/tabbar/expert.png",
"selectedIconPath": "/images/tabbar/expert_cur.png",
"text": "咨询"
},
{
"pagePath": "pages/about/home/home",
"iconPath": "/images/tabbar/about.png",
"selectedIconPath": "/images/tabbar/about_cur.png",
"text": "关于"
}
]
}
}