-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
46 lines (46 loc) · 1.22 KB
/
app.json
File metadata and controls
46 lines (46 loc) · 1.22 KB
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
{
"pages": [
"pages/index/index",
"pages/message/message",
"pages/profile/profile",
"pages/contact/contact",
"pages/shopList/shopList"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#f60",
"navigationBarTitleText": "本地宝",
"navigationBarTextStyle": "white"
},
"tabBar": {
"color": "#999",
"selectedColor": "#333",
"borderStyle": "black",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "assets/tabs/home.png",
"selectedIconPath": "assets/tabs/home-active.png"
},
{
"pagePath": "pages/message/message",
"text": "消息",
"iconPath": "assets/tabs/message.png",
"selectedIconPath": "assets/tabs/message-active.png"
},
{
"pagePath": "pages/profile/profile",
"text": "个人中心",
"iconPath": "assets/tabs/profile.png",
"selectedIconPath": "assets/tabs/profile-active.png"
},
{
"pagePath": "pages/contact/contact",
"text": "联系我",
"iconPath": "assets/tabs/contact.png",
"selectedIconPath": "assets/tabs/contact-active.png"
}
]
}
}