router.js
6.73 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
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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
import Vue from 'vue'
import Router from 'vue-router'
import Index from './pages/index/index.vue'
import tc from '@common/lang/tc.js'
import zh from '@common/lang/zh.js'
import en from '@common/lang/en.js'
Vue.use(Router)
/**
* 重写路由的push方法
*/
const routerPush = Router.prototype.push
Router.prototype.push = function push(location) {
return routerPush.call(this, location).catch(error => error)
}
const routes = [
{
path: '/',
name: 'index',
component: Index,
meta: {
title: '平安人寿香港'
}
},
{
path: '/login',
name: 'login',
component: () => import('./pages/login/login.vue'),
meta: {
title: '平安人寿香港'
}
},
{
path: '/register',
name: 'register',
component: () => import('./pages/register/register.vue'),
meta: {
title: '平安人寿香港'
}
},
{
path: '/password/find',
name: 'passwordFind',
component: () => import('./pages/password-find/password-find.vue'),
meta: {
title: '平安人寿香港'
}
},
{
path: '/password/reset',
name: 'passwordReset',
component: () => import('./pages/password-reset/password-reset.vue'),
meta: {
title: '平安人寿香港'
}
},
{
path: '/infomation/improve',
name: 'infomationImprove',
component: () => import('./pages/infomation-improve/infomation-improve.vue'),
meta: {
title: '平安人寿香港'
}
},
{
path: '/customer/auth',
name: 'customerAuth',
component: () => import('./pages/customer-auth/customer-auth.vue'),
meta: {
title: '平安人寿香港'
}
},
{
path: '/profile',
name: 'profile',
component: () => import('./pages/profile/profile.vue'),
meta: {
title: '平安人寿香港'
}
},
{
path: '/terms',
name: 'terms',
component: () => import('./pages/terms/terms.vue'),
meta: {
title: '平安人寿香港'
}
},
{
path: '/privacy',
name: 'privacy',
component: () => import('./pages/privacy/privacy.vue'),
meta: {
title: '平安人寿香港'
}
},
{
path: '/personal/data/collection',
name: 'personalDataCollection',
component: () => import('./pages/personal-data-collection/personal-data-collection.vue'),
meta: {
title: '平安人寿香港'
}
},
{
path: '/protocol',
name: 'protocol',
component: () => import('./pages/protocol/protocol.vue'),
meta: {
title: '平安人寿香港'
}
},
{
path: '/news/list',
name: 'newsList',
component: () => import('./pages/news-list/news-list.vue'),
meta: {
title: '平安人寿香港'
}
},
{
path: '/news/detail',
name: 'newsDetail',
component: () => import('./pages/news-detail/news-detail.vue'),
meta: {
title: '平安人寿香港'
}
},
{
path: '/product/introduction',
name: 'productIntroduction',
component: () => import('./pages/product-introduction/product-introduction.vue'),
meta: {
title: '平安人寿香港'
}
},
{
path: '/product',
name: 'product',
component: () => import('./pages/product/product.vue'),
meta: {
title: '平安人寿香港'
}
},
{
path: '/custom/service',
name: 'customService',
component: () => import('./pages/custom-service/custom-service.vue'),
meta: {
title: '平安人寿香港'
}
},
{
path: '/custom/product',
name: 'customProduct',
component: () => import('./pages/custom-product/custom-product.vue'),
meta: {
title: '平安人寿香港'
}
},
{
path: '/demo',
name: 'demo',
component: () => import('./pages/demo/index.vue'),
meta: {
title: '平安人寿香港'
}
},
{
path: '/about',
name: 'about',
component: () => import('./pages/About.vue'),
meta: {
title: '平安人寿香港'
}
},
{
path: '/company/events',
name: 'companyEvents',
component: () => import('./pages/company-events/company-events.vue'),
meta: {
title: '平安人寿香港'
}
},
{
path: '/responsibility',
name: 'responsibility',
component: () => import('./pages/responsibility/responsibility.vue'),
meta: {
title: '平安人寿香港'
}
},
{
path: '/awards',
name: 'awards',
component: () => import('./pages/awards/awards.vue'),
meta: {
title: '平安人寿香港'
}
},
{
path: '/join/us',
name: 'joinUs',
component: () => import('./pages/join-us/join-us.vue'),
meta: {
title: '平安人寿香港'
}
},
{
path: '/corporate/culture',
name: 'corporateCulture',
component: () => import('./pages/corporate-culture/corporate-culture.vue'),
meta: {
title: '平安人寿香港'
}
},
{
path: '/career/opportunities',
name: 'careerOpportunities',
component: () => import('./pages/career-opportunities/career-opportunities.vue'),
meta: {
title: '平安人寿香港'
}
},
{
path: '/help',
name: 'help',
component: () => import('./pages/help/help.vue'),
meta: {
title: '帮助中心'
}
},
{
path: '/contact/method',
name: 'contactMethod',
component: () => import('./pages/contact-method/contact-method.vue'),
meta: {
title: '联系方式'
}
},
{
path: '/service/net',
name: 'serviceNet',
component: () => import('./pages/service-net/service-net.vue'),
meta: {
title: '服务网络'
}
},
{
path: '/map',
name: 'map',
component: () => import('./pages/map/map.vue'),
meta: {
title: '网站地图'
}
},
{
path: '/vhis',
name: 'vhis',
component: () => import('./pages/vhis/vhis.vue'),
meta: {
title: '平安人寿香港'
}
}
// 404页面
// {
// path: '*', // * 表示上面路径匹配不到的都显示这个页面
// name: '404',
// component: Index
// },
]
// add route path
routes.forEach(route => {
route.path = route.path || '/' + (route.name || '');
});
const router = new Router({
routes,
// mode: 'history',
});
router.beforeEach((to, from, next) => {
let langStr = localStorage.getItem("lang") || 'tc';
let lang;
// switch
let defaultTitle = "平安人寿香港";
switch (langStr) {
// 简体
case "zh":
lang = zh;
break;
// 英文
case "en":
defaultTitle = "Ping An Life Hong Kong"
lang = en;
break;
// 繁体
default:
defaultTitle = "平安人壽香港"
lang = tc;
break;
}
// lang对象为当前语言配置 见 en.js,tc.js,zh.js
let title = "";
lang.nav.navList.forEach(e1 => {
if (e1.path == to.fullPath) {
title = e1.name;
} else if (e1.list && e1.list.length > 0) {
e1.list.forEach(e2 => {
if (e2.path == to.fullPath) {
title = e2.name;
}
});
}
});
// to参数可以获取要前往页面的信息,包括参数
title = title || to.meta && to.meta.title;
if (title) {
if (title == "平安人寿香港") {
title = defaultTitle;
}
document.title = title;
}
// const scrollTopList = [
// "newsList", "newsDetail", "protocol", "privacy", "terms", "paymentType", "reservation"
// ]
document.documentElement.scrollTop = 0;
document.body.scrollTop = 0;
next();
});
export default router;