-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathapp.json
50 lines (50 loc) · 1.36 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
{
"pages": [
"pages/splash/splash",
"pages/schedule/schedule",
"pages/addCourse/addCourse",
"pages/editCourse/editCourse",
"pages/queryCourse/queryCourse",
"pages/queryResult/queryResult",
"pages/queryQuiz/queryQuiz",
"pages/feedback/feedback"
],
"window": {
"navigationBarBackgroundColor": "#000000",
"navigationBarTextStyle": "white",
"navigationBarTitleText": "课表",
"backgroundColor": "#000000",
"backgroundTextStyle": "light",
"enablePullDownRefresh": false
},
"tabBar": {
"color": "#7a7d80",
"selectedColor": "#fe5700",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [
{
"text": "查看课程",
"pagePath": "pages/queryCourse/queryCourse",
"iconPath": "images/[email protected]",
"selectedIconPath": "images/[email protected]"
},
{
"text": "查看反馈",
"pagePath": "pages/queryResult/queryResult",
"iconPath": "images/[email protected]",
"selectedIconPath": "images/[email protected]"
},
{
"text": "考考孩子",
"pagePath": "pages/queryQuiz/queryQuiz",
"iconPath": "images/[email protected]",
"selectedIconPath": "images/[email protected]"
}
]
},
"networkTimeout": {
"request": 10000
},
"debug": true
}