-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
45 lines (45 loc) · 1.08 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
{
"pages": [
"pages/index/index",
"pages/logs/logs",
"pages/map/map",
"pages/menu/menu",
"pages/menu_add/menu_add",
"pages/pie/pie",
"pages/about/about",
"pages/user/index",
"pages/inner/inner"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "今天吃什么",
"navigationBarTextStyle": "black"
},
"tabBar": {
"backgroundColor": "#fafff0",
"color": "#333333",
"borderStyle": "white",
"selectedColor": "#9ACD32",
"list": [
{
"pagePath": "pages/index/index",
"text": "主页",
"iconPath": "images/icon/home.png",
"selectedIconPath": "images/icon/home1.png"
},
{
"pagePath": "pages/user/index",
"text": "个人中心",
"iconPath": "images/icon/account.png",
"selectedIconPath": "images/icon/account1.png"
}
]
},
"sitemapLocation": "sitemap.json",
"permission": {
"scope.userLocation":{
"desc": "你的位置信息将用于小程序定位"
}
}
}