-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.json
34 lines (34 loc) · 839 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
{
"pages":[
"pages/todo/todo",
"pages/todos/todos",
"pages/doing/doing",
"pages/logs/logs"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#393F4F",
"navigationBarTitleText": "ToDo",
"navigationBarTextStyle":"white"
},
"tabBar": {
"color": "#515151",
"selectedColor": "#0e932e",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/todo/todo",
"iconPath": "images/icon_db.png",
"selectedIconPath": "images/icon_db_HL.png",
"text": "待办"
},
{
"pagePath": "pages/todos/todos",
"iconPath": "images/icon_dbj.png",
"selectedIconPath": "images/icon_dbj_HL.png",
"text": "待办集"
}
]
}
}