-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathapp.json
39 lines (39 loc) · 1017 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
{
"pages":[
"pages/index/index",
"pages/course/course",
"pages/grade/grade",
"pages/hole/hole",
"pages/comment/comment",
"pages/publish/publish"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "WeChat",
"navigationBarTextStyle":"black"
},
"tabBar": {
"list": [{
"pagePath": "pages/index/index",
"text": "个人主页",
"iconPath": "images/index.png",
"selectedIconPath":"images/index_.png"
},{
"pagePath": "pages/course/course",
"text": "课程表",
"iconPath": "images/course_.png",
"selectedIconPath":"images/course.png"
}, {
"pagePath": "pages/grade/grade",
"text": "成绩查询",
"iconPath": "images/grade_.png",
"selectedIconPath":"images/grade.png"
}, {
"pagePath": "pages/hole/hole",
"text": "树洞",
"iconPath": "images/hole_.png",
"selectedIconPath":"images/hole.png"
}]
}
}