-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
55 lines (55 loc) · 1.35 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
55
{
"pages": [
"pages/login/login",
"pages/more/more",
"pages/about/about",
"pages/grades/grades",
"pages/courses/courses",
"pages/exams/exams",
"pages/semester/semester",
"pages/gradecalc/gradecalc"
],
"window": {
"backgroundTextStyle": "light",
"backgroundColor": "#F8F8F8",
"navigationBarBackgroundColor": "#F8F8F8",
"navigationBarTitleText": "南开教务助手",
"navigationBarTextStyle": "black",
"disableScroll": true
},
"tabBar": {
"color": "#7A7E83",
"selectedColor": "#3cc51f",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/login/login",
"text": "登录",
"iconPath": "/imgs/login.png",
"selectedIconPath": "/imgs/login_s.png"
},
{
"pagePath": "pages/courses/courses",
"text": "课表",
"iconPath": "/imgs/courses.png",
"selectedIconPath": "/imgs/courses_s.png"
},
{
"pagePath": "pages/grades/grades",
"text": "成绩",
"iconPath": "/imgs/grades.png",
"selectedIconPath": "/imgs/grades_s.png"
},
{
"pagePath": "pages/more/more",
"text": "更多",
"iconPath": "/imgs/more.png",
"selectedIconPath": "/imgs/more_s.png"
}
]
},
"networkTimeout": {
"request": 10000
}
}