-
Notifications
You must be signed in to change notification settings - Fork 4
/
app.json
39 lines (39 loc) · 922 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/project/project",
"pages/mine/mine",
"pages/list/list",
"pages/detail/detail",
"pages/add/add",
"pages/calendar/calendar",
"pages/records/records",
"pages/about/about" ,
"pages/help/help"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#1180ff",
"navigationBarTitleText": "KM备忘录",
"navigationBarTextStyle":"white",
"backgroundColor":"#202021"
},
"tabBar": {
"color":"#8a8a8a",
"selectedColor":"#1180ff",
"list": [
{
"pagePath": "pages/project/project",
"text": "记录",
"iconPath":"/img/project.png",
"selectedIconPath":"/img/project2.png"
},
{
"pagePath": "pages/mine/mine",
"text": "我的",
"iconPath":"/img/mine.png",
"selectedIconPath":"/img/mine2.png"
}
]
}
}