-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpages.json
192 lines (174 loc) · 3.45 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
{
"easycom": {
"^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
},
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/login/login",
"style": {}
},
{
"path": "pages/index/index",
"style": {
}
}, {
"path": "pages/lost/lost",
"style": {
}
},
{
"path": "pages/add/add",
"style": {
}
}, {
"path": "pages/find/find",
"style": {
}
}, {
"path": "pages/people/people",
"style": {
}
}, {
"path": "pages/goods-detail/goods-detail",
"style": {
}
}, {
"path": "pages/finds-detail/finds-detail",
"style": {
}
}, {
"path": "pages/about-me/about-me",
"style": {
}
},
{
"path": "pages/me/salary",
"style": {
"navigationBarTitleText": "薪资排行",
"navigationStyle": "custom"
}
},
{
"path": "pages/me/aboutMe",
"style": {
"navigationBarTitleText": "关于作者",
"navigationStyle": "custom"
}
},
{
"path": "pages/me/mentalTest/list",
"style": {
"navigationBarTitleText": "答题测试",
"navigationStyle": "custom"
}
},
{
"path": "pages/me/mentalTest/index",
"style": {
"navigationBarTitleText": "答题测试",
"navigationStyle": "custom"
}
},
{
"path": "pages/me/mentalTest/explain",
"style": {
"navigationBarTitleText": "答题规则说明"
}
},
{
"path": "pages/claim2/index",
"style": {
}
},
{
"path": "pages/me/course",
"style": {
"navigationBarTitleText": "班级课程",
"navigationStyle": "custom"
}
},
{
"path": "pages/signOut/signOut",
"style": {
"navigationBarTitleText": "退出登录"
}
},
{
"path": "pages/signOut/success",
"style": {
"navigationBarTitleText": "退出成功页面"
}
},
{
"path": "pages/setting/userdetail",
"style": {
"navigationBarTitleText": "用户详情"
}
},
{
"path": "pages/setting/useredit",
"style": {
"navigationBarTitleText": "用户编辑"
}
},
{
"path": "pages/problem/index",
"style": {
"navigationBarTitleText": "问题反馈",
"navigationStyle": "custom"
}
},
{
"path": "pages/Claim/index",
"style": {
}
}
],
// 头部导航栏设置
"globalStyle": {
"mp-alipay": {
/* 支付宝小程序特有相关 */
"transparentTitle": "always",
"allowsBounceVertical": "NO"
},
"navigationBarBackgroundColor": "#0081ff",
"navigationBarTitleText": "lijinghai",
"navigationStyle": "custom",
"navigationBarTextStyle": "white"
},
"tabBar": {
"selectedColor": "#87CEFF",
"color": "#C0C0C0",
"list": [{
"text": "首页",
"pagePath": "pages/index/index",
"iconPath": "static/icon/home.png",
"selectedIconPath": "static/icon/active-home.png"
},
{
"text": "寻失物",
"pagePath": "pages/lost/lost",
"iconPath": "static/icon/lost.png",
"selectedIconPath": "static/icon/active-lost.png"
},
{
"text": "发布信息",
"pagePath": "pages/add/add",
"iconPath": "static/icon/add1.png",
"selectedIconPath": "static/icon/active-add1.png"
},
{
"text": "寻失主",
"pagePath": "pages/find/find",
"iconPath": "static/icon/find.png",
"selectedIconPath": "static/icon/active-find.png"
},
{
"text": "个人中心",
"pagePath": "pages/people/people",
"iconPath": "static/icon/people.png",
"selectedIconPath": "static/icon/active_people.png"
}
]
}
}