-
Notifications
You must be signed in to change notification settings - Fork 49
/
app.json
42 lines (42 loc) · 1.04 KB
/
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
41
42
{
"pages": [
"pages/login/login",
"pages/flowerrank/flowerrank",
"pages/index/index",
"pages/course/course",
"pages/courseintro/courseintro",
"pages/reading/reading",
"pages/result/result",
"pages/my/my"
],
"window": {
"navigationBarBackgroundColor": "#ffffff",
"navigationBarTitleText": "SuperwingsABC",
"navigationBarTextStyle": "black",
"backgroundColor": "#1ECFA7",
"enablePullDownRefresh": true,
"backgroundTextStyle": "dark"
},
"tabBar": {
"color": "#dddddd",
"selectedColor": "#3cc51f",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/index/index",
"iconPath": "res/images/wechat.png",
"selectedIconPath": "res/images/wechatHL.png",
"text": "跟读"
},
{
"pagePath": "pages/my/my",
"iconPath": "res/images/wechat.png",
"selectedIconPath": "res/images/wechatHL.png",
"text": "我的"
}
]
},
"debug": false,
"sitemapLocation": "sitemap.json"
}