-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathapp.json
54 lines (54 loc) · 1.42 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
43
44
45
46
47
48
49
50
51
52
53
54
{
"pages": [
"pages/index/index",
"pages/courseDetails/courseDetails",
"pages/me/me",
"pages/dynamic/dynamic",
"pages/course/course",
"pages/org/org",
"pages/search/search",
"pages/nominate/nominate",
"pages/user/user",
"pages/setting/setting"
],
"window": {
"navigationBarBackgroundColor": "#fff",
"navigationBarTextStyle": "black",
"backgroundColor": "#eeeeee",
"backgroundTextStyle": "dark",
"enablePullDownRefresh": false
},
"tabBar": {
"position": "bottom",
"selectedColor": "#b4e131",
"color": "#707070",
"borderStyle": "white",
"list": [
{
"pagePath": "pages/index/index",
"text": "发现",
"iconPath": "assets/imges/discovery.png",
"selectedIconPath": "assets/imges/discovery-select.png"
},
{
"pagePath": "pages/course/course",
"text": "课程",
"iconPath": "assets/imges/course.png",
"selectedIconPath": "assets/imges/course-select.png"
},
{
"pagePath": "pages/dynamic/dynamic",
"text": "动态",
"iconPath": "assets/imges/dynamic.png",
"selectedIconPath": "assets/imges/dynamic-select.png"
},
{
"pagePath": "pages/me/me",
"text": "我的",
"iconPath": "assets/imges/me.png",
"selectedIconPath": "assets/imges/me-select.png"
}
]
},
"sitemapLocation": "sitemap.json"
}