-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathapp.json
39 lines (39 loc) · 977 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/login/login",
"pages/department/department",
"pages/subject/subject",
"pages/card/card",
"pages/user/user",
"pages/update/update"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#000",
"navigationBarTitleText": "SAU通讯录",
"navigationBarTextStyle": "light"
},
"tabBar": {
"selectedColor": "#2d8cf0",
"list": [
{
"pagePath": "pages/department/department",
"iconPath": "/image/dept.png",
"selectedIconPath": "/image/dept-active.png",
"text": "部门"
},
{
"pagePath": "pages/subject/subject",
"iconPath": "/image/subject.png",
"selectedIconPath": "/image/subject-active.png",
"text": "学科"
},
{
"pagePath": "pages/user/user",
"iconPath": "/image/user.png",
"selectedIconPath": "/image/user-active.png",
"text": "我"
}
]
}
}