Blame view

src/router.js 7.18 KB
simon committed
1 2 3 4
import Vue from 'vue'
import Router from 'vue-router'
import Index from './pages/index/index.vue'

simon committed
5 6 7 8
import tc from '@common/lang/tc.js'
import zh from '@common/lang/zh.js'
import en from '@common/lang/en.js'

simon committed
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
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: {
joe committed
26
			title: '平安人寿香港'
simon committed
27 28 29
		}
	},
	{
simon committed
30 31 32 33
		path: '/login',
		name: 'login',
		component: () => import('./pages/login/login.vue'),
		meta: {
joe committed
34
			title: '平安人寿香港'
simon committed
35 36 37 38 39 40 41
		}
	},
	{
		path: '/register',
		name: 'register',
		component: () => import('./pages/register/register.vue'),
		meta: {
joe committed
42
			title: '平安人寿香港'
simon committed
43 44 45
		}
	},
	{
joe committed
46 47 48 49
		path: '/password/find',
		name: 'passwordFind',
		component: () => import('./pages/password-find/password-find.vue'),
		meta: {
joe committed
50
			title: '平安人寿香港'
joe committed
51 52 53
		}
	},
	{
simon committed
54 55 56 57
		path: '/password/reset',
		name: 'passwordReset',
		component: () => import('./pages/password-reset/password-reset.vue'),
		meta: {
joe committed
58
			title: '平安人寿香港'
simon committed
59 60 61 62 63 64 65
		}
	},
	{
		path: '/infomation/improve',
		name: 'infomationImprove',
		component: () => import('./pages/infomation-improve/infomation-improve.vue'),
		meta: {
joe committed
66 67 68 69 70 71 72 73 74
			title: '平安人寿香港'
		}
	},
	{
		path: '/customer/auth',
		name: 'customerAuth',
		component: () => import('./pages/customer-auth/customer-auth.vue'),
		meta: {
			title: '平安人寿香港'
simon committed
75 76 77
		}
	},
	{
simon committed
78 79 80 81
		path: '/profile',
		name: 'profile',
		component: () => import('./pages/profile/profile.vue'),
		meta: {
joe committed
82
			title: '平安人寿香港'
simon committed
83 84 85 86 87 88 89
		}
	},
	{
		path: '/terms',
		name: 'terms',
		component: () => import('./pages/terms/terms.vue'),
		meta: {
joe committed
90
			title: '平安人寿香港'
simon committed
91 92 93 94 95 96 97
		}
	},
	{
		path: '/privacy',
		name: 'privacy',
		component: () => import('./pages/privacy/privacy.vue'),
		meta: {
joe committed
98
			title: '平安人寿香港'
simon committed
99 100 101
		}
	},
	{
joe committed
102 103 104 105
		path: '/personal/data/collection',
		name: 'personalDataCollection',
		component: () => import('./pages/personal-data-collection/personal-data-collection.vue'),
		meta: {
joe committed
106
			title: '平安人寿香港'
joe committed
107 108 109
		}
	},
	{
simon committed
110 111 112 113
		path: '/protocol',
		name: 'protocol',
		component: () => import('./pages/protocol/protocol.vue'),
		meta: {
joe committed
114
			title: '平安人寿香港'
simon committed
115 116
		}
	},
simon committed
117 118 119 120 121
	{
		path: '/news/list',
		name: 'newsList',
		component: () => import('./pages/news-list/news-list.vue'),
		meta: {
joe committed
122
			title: '平安人寿香港'
simon committed
123 124
		}
	},
simon committed
125 126 127 128 129
	{
		path: '/news/detail',
		name: 'newsDetail',
		component: () => import('./pages/news-detail/news-detail.vue'),
		meta: {
joe committed
130
			title: '平安人寿香港'
simon committed
131 132 133
		}
	},

simon committed
134
	{
joe committed
135 136 137 138 139 140 141 142 143
		path: '/product/introduction',
		name: 'productIntroduction',
		component: () => import('./pages/product-introduction/product-introduction.vue'),
		meta: {
			title: '平安人寿香港'
		}
	},

	{
joe committed
144 145 146 147
		path: '/product',
		name: 'product',
		component: () => import('./pages/product/product.vue'),
		meta: {
joe committed
148
			title: '平安人寿香港'
joe committed
149 150
		}
	},
joe committed
151 152 153 154 155
	{
		path: '/custom/service',
		name: 'customService',
		component: () => import('./pages/custom-service/custom-service.vue'),
		meta: {
joe committed
156
			title: '平安人寿香港'
joe committed
157 158
		}
	},
simon committed
159 160 161 162 163
	{
		path: '/custom/product',
		name: 'customProduct',
		component: () => import('./pages/custom-product/custom-product.vue'),
		meta: {
joe committed
164
			title: '平安人寿香港'
simon committed
165 166
		}
	},
simon committed
167 168 169 170 171 172

	{
		path: '/demo',
		name: 'demo',
		component: () => import('./pages/demo/index.vue'),
		meta: {
joe committed
173
			title: '平安人寿香港'
simon committed
174 175 176 177 178 179 180
		}
	},
	{
		path: '/about',
		name: 'about',
		component: () => import('./pages/About.vue'),
		meta: {
joe committed
181
			title: '平安人寿香港'
simon committed
182 183
		}
	},
joe committed
184
	{
joe committed
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
		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: '网站地图'
		}
joe committed
263 264 265 266 267 268 269 270
	},
	{
		path: '/vhis',
		name: 'vhis',
		component: () => import('./pages/vhis/vhis.vue'),
		meta: {
			title: '平安人寿香港'
		}
simon committed
271 272 273 274 275 276 277 278
	},
	{
		path: '/vhis/detail',
		name: 'vhisDetail',
		component: () => import('./pages/vhis-detail/vhis-detail.vue'),
		meta: {
			title: '平安人寿香港'
		}
simon committed
279 280
	},
	{
simon committed
281 282 283 284 285 286 287 288 289
		path: '/gen/rich',
		name: 'genRich',
		component: () => import('./pages/gen-rich/gen-rich.vue'),
		meta: {
			title: '平安人寿香港'
		}
	},

	{
simon committed
290 291 292 293 294 295
		path: '/clarms',
		name: 'clarms',
		component: () => import('./pages/clarms/clarms.vue'),
		meta: {
			title: '平安人寿香港'
		}
1  
joe committed
296
	}
simon committed
297
	// 404页面
simon committed
298 299 300 301 302
	// {
	// 	path: '*', // * 表示上面路径匹配不到的都显示这个页面
	// 	name: '404',
	// 	component: Index
	// },
simon committed
303 304 305 306 307 308 309 310 311 312 313 314
]

// add route path
routes.forEach(route => {
	route.path = route.path || '/' + (route.name || '');
});

const router = new Router({
	routes,
	// mode: 'history',
});

joe committed
315

simon committed
316
router.beforeEach((to, from, next) => {
simon committed
317 318 319
	let langStr = localStorage.getItem("lang") || 'tc';
	let lang;
	// switch
joe committed
320
	let defaultTitle = "平安人寿香港";
simon committed
321 322 323 324 325
	switch (langStr) {
		// 简体
		case "zh":
			lang = zh;
			break;
simon committed
326
			// 英文
simon committed
327
		case "en":
joe committed
328
			defaultTitle = "Ping An Life Hong Kong"
simon committed
329 330
			lang = en;
			break;
simon committed
331
			// 繁体
simon committed
332
		default:
joe committed
333
			defaultTitle = "平安人壽香港"
simon committed
334 335 336 337 338
			lang = tc;
			break;
	}

	// lang对象为当前语言配置 见 en.js,tc.js,zh.js
joe committed
339 340
	let title = "";
	lang.nav.navList.forEach(e1 => {
joe committed
341 342 343
		if (e1.path == to.fullPath) {
			title = e1.name;
		} else if (e1.list && e1.list.length > 0) {
joe committed
344
			e1.list.forEach(e2 => {
joe committed
345
				if (e2.path == to.fullPath) {
joe committed
346 347 348 349 350
					title = e2.name;
				}
			});
		}
	});
simon committed
351
	// to参数可以获取要前往页面的信息,包括参数
joe committed
352
	title = title || to.meta && to.meta.title;
simon committed
353
	if (title) {
joe committed
354 355 356
		if (title == "平安人寿香港") {
			title = defaultTitle;
		}
simon committed
357 358
		document.title = title;
	}
simon committed
359 360 361
	// const scrollTopList = [
	// 	"newsList", "newsDetail", "protocol", "privacy", "terms", "paymentType", "reservation"
	// ]
joe committed
362 363
	document.documentElement.scrollTop = 0;
	document.body.scrollTop = 0;
simon committed
364 365 366 367
	next();
});

export default router;