-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
42 lines (40 loc) · 934 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
40
41
42
{
"pages": [
"pages/index/index",
"pages/logs/logs",
"pages/text/text",
"pages/test/test"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#ccc",
"navigationBarTitleText": "WeChat",
"navigationBarTextStyle": "black"
},
"tabBar": {
"color": "#ccc",
"selectedColor": "#3c9efa",
"borderStyle": "white",
"backgroundColor": "#fff",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "img/my1.jpg",
"selectedIconPath": "img/my.jpg"
},
{
"pagePath": "pages/text/text",
"text": "设置",
"iconPath": "img/people1.jpg",
"selectedIconPath": "img/people.jpg"
},
{
"pagePath": "pages/test/test",
"text": "测试",
"iconPath": "img/people1.jpg",
"selectedIconPath": "img/people.jpg"
}
]
}
}