-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
65 lines (65 loc) · 1.92 KB
/
Copy pathapp.json
File metadata and controls
65 lines (65 loc) · 1.92 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"pages": [
"pages/index/index",
"pages/home/home",
"pages/publish/publish",
"pages/profile/profile",
"pages/chatrooms/chatrooms",
"pages/friends/friends",
"pages/chat/chat",
"pages/activity-detail/activity-detail"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#4CAF50",
"navigationBarTitleText": "约了么",
"navigationBarTextStyle": "white",
"backgroundColor": "#f5f5f5"
},
"tabBar": {
"color": "#999999",
"selectedColor": "#4CAF50",
"backgroundColor": "#ffffff",
"borderStyle": "black",
"list": [
{
"pagePath": "pages/home/home",
"text": "组局",
"iconPath": "images/tab-bar/home.png",
"selectedIconPath": "images/tab-bar/home-active.png"
},
{
"pagePath": "pages/publish/publish",
"text": "发布",
"iconPath": "images/tab-bar/publish.png",
"selectedIconPath": "images/tab-bar/publish-active.png"
},
{
"pagePath": "pages/profile/profile",
"text": "个人",
"iconPath": "images/tab-bar/profile.png",
"selectedIconPath": "images/tab-bar/profile-active.png"
},
{
"pagePath": "pages/chatrooms/chatrooms",
"text": "群聊",
"iconPath": "images/tab-bar/chatrooms.png",
"selectedIconPath": "images/tab-bar/chatrooms-active.png"
},
{
"pagePath": "pages/friends/friends",
"text": "好友",
"iconPath": "images/tab-bar/friends.png",
"selectedIconPath": "images/tab-bar/friends-active.png"
}
]
},
"style": "v2",
"sitemapLocation": "sitemap.json",
"requiredPrivateInfos": ["chooseLocation", "getLocation"],
"permission": {
"scope.userLocation": {
"desc": "用于在发布组局时选择活动地点,以及查看活动具体位置"
}
}
}