pages.json
1.19 KB
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
56
57
58
{
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "",
"navigationStyle": "custom"
}
},
{
"path": "pages/my/my",
"style": {
"navigationBarTitleText": "",
"navigationStyle": "custom"
}
},
{
"path" : "pages/login/login",
"style" :
{
"navigationBarTitleText" : "登录",
"navigationStyle": "custom"
}
},
{
"path": "pages/signUp/signUp",
"style": {
"navigationBarTitleText": "报名"
}
},
{
"path": "pages/addStudent/addStudent",
"style": {
"navigationBarTitleText": "添加孩子"
}
}
],
"tabBar": {
"color": "#7A7E83",
"selectedColor": "#f96118",
"list": [{
"pagePath": "pages/index/index",
"iconPath": "static/tabBar/home.png",
"selectedIconPath": "static/tabBar/homeAc.png",
"text": "发现"
}, {
"pagePath": "pages/my/my",
"iconPath": "static/tabBar/my.png",
"selectedIconPath": "static/tabBar/myAc.png",
"text": "家长"
}]
},
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarBackgroundColor": "#eaecfb"
},
"uniIdRouter": {}
}