-
Notifications
You must be signed in to change notification settings - Fork 9
/
app.json
36 lines (36 loc) · 838 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
{
"pages":[
"pages/home/home",
"pages/binding/binding",
"pages/login/login",
"pages/me/me",
"pages/tomato/tomato",
"pages/test/test"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "番茄闹钟",
"navigationBarTextStyle":"black"
},
"tabBar": {
"color": "#515151",
"selectedColor": "#F6705A",
"backgroundColor": "#fff",
"borderStyle": "black",
"list": [
{
"pagePath": "pages/home/home",
"text": "专注",
"iconPath": "images/home.png",
"selectedIconPath": "images/home-active.png"
},
{
"pagePath": "pages/me/me",
"text": "我的",
"iconPath": "images/me.png",
"selectedIconPath": "images/me-active.png"
}
]
}
}