-
Notifications
You must be signed in to change notification settings - Fork 16
/
app.json
39 lines (39 loc) · 941 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
{
"pages":[
"pages/picker/picker",
"pages/lists/lists",
"pages/detail/detail",
"pages/calendar/calendar"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#FF5073",
"navigationBarTitleText": "ayuLiao",
"navigationBarTextStyle":"#fff",
"enablePullDownRefresh": true
},
"tabBar": {
"backgroundColor": "#343",
"color": "#fff",
"list": [
{
"pagePath": "pages/calendar/calendar",
"text": "月经记录",
"iconPath": "image/1.png",
"selectedIconPath": "image/2.png"
},
{
"pagePath": "pages/lists/lists",
"text": "月经知识",
"iconPath": "image/3.png",
"selectedIconPath": "image/4.png"
},
{
"pagePath": "pages/picker/picker",
"text": "月经设置",
"iconPath": "image/2.png",
"selectedIconPath": "image/4.png"
}
]
}
}