e7874705
liuqimichale
init
|
1
2
3
|
import Vue from 'vue'
import Router from 'vue-router'
import plateNumber from '@/components/plateNumber'
|
9393381b
liuqimichale
payType
|
4
|
// import parkRecord from '@/components/parkRecord'
|
5478746a
liuqimichale
赤峰动态码
|
5
|
import dynCodePay from '@/components/dynCodePay'
|
e7874705
liuqimichale
init
|
6
7
8
9
10
11
12
|
Vue.use(Router)
export default new Router({
routes: [
{
path: '/',
|
26e543b8
liuqimichale
ajax 统一封装
|
13
|
redirect: {
|
402b26c9
liuqimichale
西城 静态码
|
14
|
name: 'plateNumber'
|
26e543b8
liuqimichale
ajax 统一封装
|
15
|
}
|
e7874705
liuqimichale
init
|
16
|
},
|
5478746a
liuqimichale
赤峰动态码
|
17
18
19
20
21
|
// {
// path: '/navigation',
// name: 'navigation',
// component: navigation
// },
|
b137bb0e
liuqimichale
扫码后 车牌是否 咨询页面
|
22
|
{
|
e7874705
liuqimichale
init
|
23
24
25
26
|
path: '/plateNumber',
name: 'plateNumber',
component: plateNumber
},
|
2c31a41c
liuqimichale
赤峰静态码测试完成
|
27
28
29
30
31
32
33
34
35
36
|
// {
// path: '/parkRecord',
// name: 'parkRecord',
// component: parkRecord
// },
// {
// path: '/orderPay',
// name: 'orderPay',
// component: () => import("@/components/orderPay.vue")
// },
|
455431ac
liuqimichale
欠费缴纳--费用支付
|
37
|
|
d29bf602
liuqimichale
赤峰测试环境 农行支付
|
38
39
40
41
42
43
44
|
{
path: '/payResult',
name: 'payResult',
component: () => import("@/components/payResult.vue")
},
|
8910837d
liuqimichale
赤峰动态二维码
|
45
46
47
48
49
50
|
{
path: '/dynCodePay',
name: 'dynCodePay',
component: () => import("@/components/dynCodePay.vue")
},
|
2c31a41c
liuqimichale
赤峰静态码测试完成
|
51
52
53
54
55
56
|
{
path: '/pay',
name: 'pay',
component: () => import("@/components/pay.vue")
},
|
402b26c9
liuqimichale
西城 静态码
|
57
58
59
60
61
|
{
path: '/noPass',
name: 'noPass',
component: () => import("@/components/noPass.vue")
},
|
d29bf602
liuqimichale
赤峰测试环境 农行支付
|
62
|
|
e7874705
liuqimichale
init
|
63
64
65
|
]
})
|