-
Notifications
You must be signed in to change notification settings - Fork 8
/
app.json
40 lines (40 loc) · 978 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
39
40
{
"pages": [
"pages/index/index",
"pages/detail/detail",
"pages/mine/mine"
],
"window": {
"backgroundColor": "#F6F6F6",
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#F6F6F6",
"navigationBarTitleText": "智慧AI谷",
"navigationBarTextStyle": "black"
},
"sitemapLocation": "sitemap.json",
"style": "v2",
"networkTimeout": {
"request": 10000,
"downloadFile": 10000
},
"tabBar": {
"color": "#999999",
"selectedColor": "#7cba59",
"backgroundColor": "#FFFFFF",
"borderStyle": "black",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "images/首页未选中.png",
"selectedIconPath": "images/首页已选中.png"
},
{
"pagePath": "pages/mine/mine",
"text": "我的",
"iconPath": "images/我的未选中.png",
"selectedIconPath": "images/我的已选中.png"
}
]
}
}