index.js
1.14 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
import Vue from 'vue'
import Router from 'vue-router'
import plateNumber from '@/components/plateNumber'
import parkRecord from '@/components/parkRecord'
import dynCodePay from '@/components/dynCodePay'
Vue.use(Router)
export default new Router({
routes: [
{
path: '/',
redirect: {
name: 'dynCodePay'
}
},
// {
// path: '/navigation',
// name: 'navigation',
// component: navigation
// },
{
path: '/plateNumber',
name: 'plateNumber',
component: plateNumber
},
// {
// 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")
},
{
path: '/pay',
name: 'pay',
component: () => import("@/components/pay.vue")
},
]
})