-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathapp.json
More file actions
executable file
·61 lines (61 loc) · 1.5 KB
/
app.json
File metadata and controls
executable file
·61 lines (61 loc) · 1.5 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
{
"pages": [
"pages/index/index",
"pages/room/room",
"pages/like/like",
"pages/mine/mine",
"pages/list/list",
"pages/detail/detail",
"pages/page/page"
],
"darkmode": true,
"themeLocation": "theme.json",
"window": {
"navigationBarTitleText": "",
"navigationBarBackgroundColor": "@navBgColor",
"navigationBarTextStyle": "@navTxtStyle",
"backgroundColor": "@bgColor",
"backgroundTextStyle": "@bgTxtStyle",
"backgroundColorTop": "@bgColorTop",
"backgroundColorBottom": "@bgColorBottom"
},
"tabBar": {
"custom": true,
"color": "#333333",
"selectedColor": "#000000",
"borderStyle": "white",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/index/index",
"iconPath": "images/on/trans.png",
"selectedIconPath": "images/on/trans.png",
"text": "发现"
},
{
"pagePath": "pages/room/room",
"iconPath": "images/on/trans.png",
"selectedIconPath": "images/on/trans.png",
"text": "清单"
},
{
"pagePath": "pages/like/like",
"iconPath": "images/on/trans.png",
"selectedIconPath": "images/on/trans.png",
"text": "点赞"
}
]
},
"permission": {
"scope.userLocation": {
"desc": "你的位置信息将用于小程序位置接口的效果展示"
}
},
"plugins": {
"WechatSI": {
"version": "0.3.4",
"provider": "wx069ba97219f66d99"
}
},
"sitemapLocation": "sitemap.json"
}