-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
59 lines (58 loc) · 1.63 KB
/
app.json
File metadata and controls
59 lines (58 loc) · 1.63 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
{
"pages": [
"pages/home/home",
"pages/activity_classification/activity_classification",
"pages/register/register",
"pages/activity_record/activity_record",
"pages/activity_organize/activity_organize",
"pages/punch_submit/punch_submit",
"pages/activity_detail/activity_detail",
"pages/activity_list/activity_list",
"pages/activity/activity",
"pages/personal/personal",
"pages/cropper/cropper",
"pages/analysis/analysis",
"pages/feedback/feedback",
"pages/activity_search/activity_search",
"pages/activity_collect/activity_collect",
"pages/punch_record/punch_record"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#cceaf8",
"navigationBarTitleText": "打卡小程序",
"navigationBarTextStyle": "white"
},
"style": "v2",
"sitemapLocation": "sitemap.json",
"tabBar": {
"color": "#a9b7b7",
"selectedColor": "#11cd6e",
"borderStyle": "black",
"list": [
{
"selectedIconPath": "images/index1.png",
"iconPath": "images/index.png",
"pagePath": "pages/home/home",
"text": "首页"
},
{
"selectedIconPath": "images/punch1.png",
"iconPath": "images/punch.png",
"pagePath": "pages/activity/activity",
"text": "打卡"
},
{
"selectedIconPath": "images/user1.png",
"iconPath": "images/user.png",
"pagePath": "pages/personal/personal",
"text": "我的"
}
]
},
"permission": {
"scope.userLocation": {
"desc": "你的位置信息将用于小程序位置接口的效果展示"
}
}
}