-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
39 lines (39 loc) · 1007 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/index/index",
"pages/todos/todos",
"pages/task/task",
"pages/logs/logs",
"pages/timeset/timeset",
"pages/setting/setting"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#3197ed",
"navigationBarTitleText": "",
"navigationBarTextStyle": "white"
},
"tabBar": {
"position": "bottom",
"list": [
{
"iconPath": "images/home_48px.png",
"selectedIconPath": "images/home_48px.png",
"pagePath": "pages/index/index",
"text": "首页"
},
{
"iconPath": "images/checkout_shoppingcart_48px.png",
"selectedIconPath": "images/checkout_shoppingcart_48px.png",
"pagePath": "pages/todos/todos",
"text": "今日待办"
},
{
"iconPath": "images/manage_user_48px.png",
"selectedIconPath": "images/manage_user_48px.png",
"pagePath": "pages/timeset/timeset",
"text": "我的"
}
]
}
}