-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
38 lines (38 loc) · 914 Bytes
/
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
{
"pages": [
"pages/index/index",
"pages/register_info/register_info",
"pages/my/my",
"pages/credit/credit",
"pages/platform/platform"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#2E2EF3",
"navigationBarTitleText": "蜘蛛007",
"navigationBarTextStyle": "white"
},
"tabBar": {
"color": "#4F4F4F",
"selectedColor": "#2E2EF3",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "images/index-off.png",
"selectedIconPath": "images/index.png"
},
{
"pagePath": "pages/my/my",
"text": "我的",
"iconPath": "images/my-off.png",
"selectedIconPath": "images/my.png"
}
]
},
"style": "v2",
"sitemapLocation": "sitemap.json",
"usingComponents": {
"image-load": "./components/image-load/image-load"
}
}