-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
45 lines (45 loc) · 1.13 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/login/login",
"pages/index/index",
"pages/user/user",
"pages/single/single",
"pages/logs/logs",
"pages/single/detail/detail"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#39b54a",
"navigationBarTitleText": "Aquaponics IOT",
"navigationBarTextStyle": "white"
},
"tabBar": {
"selectedColor": "#1296db",
"backgroundColor": "#eee",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "/images/icon/device-off.png",
"selectedIconPath": "/images/icon/device.png"
},
{
"pagePath": "pages/user/user",
"text": "我的",
"iconPath": "/images/icon/mine-off.png",
"selectedIconPath": "/images/icon/mine.png"
},
{
"pagePath": "pages/logs/logs",
"text": "日志",
"iconPath": "/images/icon/log-off.png",
"selectedIconPath": "/images/icon/log.png"
}
]
},
"permission": {
"scope.userLocation": {
"desc": "你的位置信息将用于小程序位置接口的效果展示"
}
}
}