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/wallet/wallet",
| "pages/home/home",
| "pages/login/login",
| "pages/index/index",
| "pages/logs/logs",
| "pages/my/my",
| "pages/recharge/recharge"
|
| ],
| "window": {
| "navigationBarTextStyle": "black",
| "navigationBarTitleText": "电子钱包",
| "navigationBarBackgroundColor": "#1890FF"
| },
| "componentFramework": "glass-easel",
| "sitemapLocation": "sitemap.json",
| "lazyCodeLoading": "requiredComponents",
| "tabBar": {
| "color": "#000000",
| "selectedColor": "#2D8BF7",
| "list": [{
| "pagePath": "pages/home/home",
| "text": "首页",
| "iconPath": "/images/home_grey.png",
| "selectedIconPath": "/images/home_blue.png"
| },
| {
| "pagePath": "pages/wallet/wallet",
| "text": "电子钱包",
| "iconPath": "/images/wallet_grey.png",
| "selectedIconPath": "/images/wallet_blue.png"
|
| },
| {
| "pagePath": "pages/my/my",
| "text": "个人中心",
| "iconPath": "/images/my_grey.png",
| "selectedIconPath": "/images/my_blue.png"
| }
| ]
| }
| }
|
|