app.json
1.1 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
{
"pages": [
"pages/tabBar/home/home",
"pages/tabBar/my/my"
],
"subPackages": [],
"window": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uView",
"navigationBarBackgroundColor": "#FFFFFF",
"backgroundColor": "#FFFFFF",
"fontSize": "36rpx"
},
"tabBar": {
"color": "#000000",
"selectedColor": "#F64114",
"backgroundColor": "#FFFFFF",
"borderStyle": "black",
"height": "100rpx",
"fontSize": "40rpx",
"list": [
{
"pagePath": "pages/tabBar/home/home",
"iconPath": "/static/img/tabbar/home.png",
"selectedIconPath": "/static/img/tabbar/homeHL.png",
"text": "首页"
},
{
"pagePath": "pages/tabBar/my/my",
"iconPath": "/static/img/tabbar/my.png",
"selectedIconPath": "/static/img/tabbar/myHL.png",
"text": "我的"
}
]
},
"preloadRule": {},
"permission": {
"scope.userLocation": {
"desc": "你的位置信息将用于小程序位置接口的效果展示"
}
},
"uniStatistics": {
"enable": true
},
"usingComponents": {}
}