-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
executable file
·48 lines (48 loc) · 1.23 KB
/
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
40
41
42
43
44
45
46
47
48
{
"pages": [
"pages/index/index",
"pages/logs/logs",
"pages/map/map",
"pages/event_edit/event_edit",
"pages/event_log/event_log",
"pages/user_info/user_info",
"pages/event_detail/event_detail",
"pages/my_post/my_post",
"pages/my_config/my_config"
],
"window": {
"backgroundTextStyle": "dark",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "Mesh",
"navigationBarTextStyle": "black"
},
"usingComponents": {
"my-modal": "./component/my-modal/my-modal"
},
"tabBar": {
"color": "#dddddd",
"selectedColor": "#3cc51f",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/map/map",
"text": "地图",
"iconPath": "assets/pic/map_n.png",
"selectedIconPath": "assets/pic/map_s.png"
},
{
"pagePath": "pages/event_log/event_log",
"text": "新事件",
"iconPath": "assets/pic/mail_n.png",
"selectedIconPath": "assets/pic/mail_s.png"
},
{
"pagePath": "pages/user_info/user_info",
"text": "个人中心",
"iconPath": "assets/pic/user_n.png",
"selectedIconPath": "assets/pic/user_s.png"
}
]
}
}