Blame view

src/router/index.js 585 Bytes
e7874705   liuqimichale   init
1
2
  import Vue from 'vue'
  import Router from 'vue-router'
acb0bccb   刘淇   chongdianqiang
3
4
5
  // import plateNumber from '@/components/plateNumber'
  // import parkRecord from '@/components/parkRecord'
  import navigation from '@/components/navigation'
e7874705   liuqimichale   init
6
7
8
9
10
11
12
  
  Vue.use(Router)
  
  export default new Router({
    routes: [
      {
        path: '/',
26e543b8   liuqimichale   ajax 统一封装
13
        redirect: {
acb0bccb   刘淇   chongdianqiang
14
          name: 'navigation'
26e543b8   liuqimichale   ajax 统一封装
15
        }
e7874705   liuqimichale   init
16
      },
b137bb0e   liuqimichale   扫码后 车牌是否 咨询页面
17
      {
acb0bccb   刘淇   chongdianqiang
18
19
20
        path: '/navigation',
        name: 'navigation',
        component: navigation
e7874705   liuqimichale   init
21
22
      },
      {
acb0bccb   刘淇   chongdianqiang
23
24
25
        path: '/endRecharge',
        name: 'endRecharge',
        component: () => import("@/components/endRecharge.vue"),
e7874705   liuqimichale   init
26
      },
d29bf602   liuqimichale   赤峰测试环境 农行支付
27
28
  
  
e7874705   liuqimichale   init
29
30
31
  
    ]
  })