-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
38 lines (38 loc) · 971 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/list/list",
"pages/message/message",
"pages/profile/profile"
],
"window": {
"navigationBarBackgroundColor": "#3a4861",
"navigationBarTitleText": "本地生活",
"navigationBarTextStyle": "white"
},
"tabBar": {
"color": "#666",
"selectedColor": "#999",
"borderStyle": "black",
"list": [
{
"pagePath": "pages/home/home",
"text": "home",
"iconPath": "/assets/tabs/home.png",
"selectedIconPath": "/assets/tabs/home-active.png"
},
{
"pagePath": "pages/message/message",
"text": "message",
"iconPath": "/assets/tabs/message.png",
"selectedIconPath": "/assets/tabs/message-active.png"
},
{
"pagePath": "pages/profile/profile",
"text": "profile",
"iconPath": "/assets/tabs/profile.png",
"selectedIconPath": "/assets/tabs/profile-active.png"
}
]
}
}