-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.json
More file actions
63 lines (58 loc) · 1.8 KB
/
app.json
File metadata and controls
63 lines (58 loc) · 1.8 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
62
63
{
"pages": [
"pages/index/index",
"pages/home/home",
"pages/chatting/chatting",
"pages/setting/setting",
"pages/users/users",
"pages/logs/logs",
"pages/about/about",
"pages/add/add"
],
"requiredPrivateInfos": [
"getLocation",
"chooseLocation",
"choosePoi",
"chooseAddress"
],
"window": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "智能温室大棚管理系统",
"navigationBarBackgroundColor": "#ffffff"
},
"style": "v2",
"componentFramework": "glass-easel",
"sitemapLocation": "sitemap.json",
"lazyCodeLoading": "requiredComponents",
"tabBar": {
"borderStyle":"white",
"list": [
{
"pagePath": "pages/home/home",
"text": "首页",
"iconPath": "static/home(black).png",
"selectedIconPath": "static/home(green).png"
},{
"pagePath": "pages/chatting/chatting",
"text": "助手",
"iconPath": "static/chatting(black).png",
"selectedIconPath": "static/chatting(green).png"
},{
"pagePath": "pages/setting/setting",
"text": "设置",
"iconPath": "static/setting(black).png",
"selectedIconPath": "static/setting(green).png"
},{
"pagePath": "pages/users/users",
"text": "用户",
"iconPath": "static/user(black).png",
"selectedIconPath": "static/user(green).png"
}
]
},
"permission": {
"scope.userLocation": {
"desc": "你的位置信息将用于自动定位天气预报"
}
}
}