forked from ZhChen7/LakeDivision-flea-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
60 lines (60 loc) · 1.53 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"pages": [
"pages/home/home",
"pages/chatroom/chatroom",
"pages/recommend/recommend",
"pages/sort/sort",
"pages/publish/publish",
"pages/sortlist/sortlist",
"pages/information/information",
"pages/index/index",
"pages/index/indexlistshow/indexlistshow",
"pages/goods-show/index",
"pages/logs/logs",
"pages/classify/index",
"pages/user/user"
],
"permission": {
"scope.userLocation": {
"desc": "你的位置信息将用于小程序位置接口的效果展示"
}
},
"window": {
"navigationStyle": "custom"
},
"usingComponents": {
"cu-custom": "/colorui/components/cu-custom"
},
"tabBar": {
"custom": true,
"color": "#333",
"selectedColor": "#f30",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "images/shouye.png",
"selectedIconPath": "images/selected_shouye.png"
},
{
"pagePath": "pages/recommend/recommend",
"text": "推荐",
"iconPath": "images/recommend.png",
"selectedIconPath": "images/selected_recommend.png"
},
{
"pagePath": "pages/information/information",
"text": "信息",
"iconPath": "images/information.png",
"selectedIconPath": "images/selected_information.png"
},
{
"pagePath": "pages/user/user",
"text": "我的",
"iconPath": "images/user.png",
"selectedIconPath": "images/selected_user.png"
}
]
},
"sitemapLocation": "sitemap.json"
}