-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpages.json
113 lines (111 loc) · 2.36 KB
/
pages.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/index/index"
},
{
"path": "pages/study/study"
}, {
"path": "pages/mine/mine",
"style": {
"navigationBarTitleText": "我的"
}
},
{
"path": "pages/intergarl/intergarl",
"style": {
"navigationBarTitleText": "积分"
}
}
],
"subPackages": [{
"root": "packageA",
"pages": [{
"path": "pages/order/order",
"style": {
"navigationBarTitleText": "兑换记录"
}
},
{
"path": "pages/favorites/favorites",
"style": {
"navigationBarTitleText": "收藏"
}
},
{
"path": "pages/answer_sheet/answer_sheet",
"style": {
"navigationBarTitleText": "答题卡"
}
},
{
"path": "pages/answer_sheet/answer_sheet_all",
"style": {
"navigationBarTitleText": "答题卡"
}
},
{
"path": "pages/wrong_question/wrong_question",
"style": {
"navigationBarTitleText": "错题集"
}
},
{
"path": "pages/garbage_detail/garbage_detail"
},
{
"path": "pages/test/test",
"style": {
"navigationBarTitleText": "测试"
}
},
{
"path": "pages/test_collection/test_collection",
"style": {
"navigationBarTitleText": "题库"
}
},
{
"path": "pages/about/about",
"style": {
"navigationBarTitleText": "关于"
}
}
]
}],
"requiredBackgroundModes": ["location"],
"globalStyle": {
"navigationBarTextStyle": "white",
"navigationBarTitleText": "垃圾分类",
"navigationBarBackgroundColor": "#10d169",
"backgroundColor": "#F8F8F8"
},
"uniIdRouter": {},
"tabBar": {
"list": [{
"pagePath": "pages/index/index",
"iconPath": "static/myIcon/首页.png",
"selectedIconPath": "static/myIcon/首页 (1).png",
"text": "首页"
},
{
"pagePath": "pages/study/study",
"iconPath": "static/myIcon/学习.png",
"selectedIconPath": "static/myIcon/学习 (1).png",
"text": "学习"
},
{
"pagePath": "pages/intergarl/intergarl",
"iconPath": "static/myIcon/兑换券.png",
"selectedIconPath": "static/myIcon/兑换券 (1).png",
"text": "积分"
},
{
"pagePath": "pages/mine/mine",
"iconPath": "static/myIcon/我的.png",
"selectedIconPath": "static/myIcon/我的 (1).png",
"text": "我的"
}
]
}
}