index.js
1.72 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
import Vue from 'vue'
import Router from 'vue-router'
import plateNumber from '@/components/plateNumber'
// import parkRecord from '@/components/parkRecord'
import dynCodePay from '@/components/dynCodePay'
import parkEnter from '@/components/parkEnter'
Vue.use(Router)
const router = new Router({
routes: [
{
path: '/',
redirect: {
name: 'plateNumber'
}
},
// {
// path: '/navigation',
// name: 'navigation',
// component: navigation
// },
{
path: '/parkEnter',
name: 'parkEnter',
component: parkEnter,
meta: {
title: '入场码'
}
},
{
path: '/plateNumber',
name: 'plateNumber',
component: plateNumber,
meta: {
title: '静态码'
}
},
// {
// path: '/parkRecord',
// name: 'parkRecord',
// component: parkRecord
// },
// {
// path: '/orderPay',
// name: 'orderPay',
// component: () => import("@/components/orderPay.vue")
// },
{
path: '/payResult',
name: 'payResult',
component: () => import("@/components/payResult.vue")
},
{
path: '/dynCodePay',
name: 'dynCodePay',
component: () => import("@/components/dynCodePay.vue"),
meta: {
title: '动态码'
}
},
{
path: '/pay',
name: 'pay',
component: () => import("@/components/pay.vue")
},
{
path: '/noPass',
name: 'noPass',
component: () => import("@/components/noPass.vue")
},
]
})
router.beforeEach((to, from, next) => {
/* 路由发生变化修改页面title */
if (to.meta.title) {
document.title = to.meta.title
}
next()
})
export default router