-
Notifications
You must be signed in to change notification settings - Fork 21
/
app.json
executable file
·38 lines (38 loc) · 979 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
{
"pages":[
"pages/home/home",
"pages/todos/todos",
"pages/event/event",
"pages/user/user"
],
"window":{
"enablePullDownRefresh": true,
"backgroundTextStyle":"dark",
"backgroundColor": "#f2f2f2",
"navigationBarBackgroundColor": "#fbfbfb",
"navigationBarTitleText": "打卡",
"navigationBarTextStyle":"black"
},
"tabBar": {
"list": [
{
"pagePath": "pages/home/home",
"text": "打卡",
"iconPath": "images/home.png",
"selectedIconPath": "images/home-selected.png"
},
{
"pagePath": "pages/todos/todos",
"text": "记录",
"iconPath": "images/order-fill.png",
"selectedIconPath": "images/order-fill-selected.png"
},
{
"pagePath": "pages/user/user",
"text": "我",
"iconPath": "images/user.png",
"selectedIconPath": "images/user-selected.png"
}
]
}
}