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
| {
| "pages": [
| "pages/index/index",
| "pages/mine/mine"
| ],
| "subPackages": [],
| "window": {
| "navigationBarTextStyle": "black",
| "navigationBarTitleText": "uni-app",
| "navigationBarBackgroundColor": "#F8F8F8",
| "backgroundColor": "#F8F8F8"
| },
| "tabBar": {
| "color": "#999999",
| "selectedColor": "#222222",
| "borderStyle": "black",
| "backgroundColor": "#fff",
| "list": [
| {
| "pagePath": "pages/index/index",
| "iconPath": "static/tabbar/nav_jiancha@2x.png",
| "selectedIconPath": "static/tabbar/nav_jiancha_sel@2x.png",
| "text": "首页"
| },
| {
| "pagePath": "pages/mine/mine",
| "iconPath": "static/tabbar/nav_jiancha@2x.png",
| "selectedIconPath": "static/tabbar/nav_jiancha_sel@2x.png",
| "text": "我的"
| }
| ]
| },
| "permission": {
| "scope.userLocation": {
| "desc": "定位"
| }
| },
| "usingComponents": {}
| }
|
|