1 changed files with 34 additions and 0 deletions
@ -0,0 +1,34 @@ |
|||
/** |
|||
* 执法端页面 |
|||
*/ |
|||
const routes = [ |
|||
//执法端首页
|
|||
{ |
|||
path: "/enforceHome", |
|||
name: "enforceHome", |
|||
component: () => import("@/views/enforceHome.vue"), |
|||
meta: { |
|||
isKeepAlive: true, |
|||
}, |
|||
}, |
|||
//执法端扫码入企页面
|
|||
{ |
|||
path: "/enforce/scanQrCode", |
|||
name: "scanQrCode", |
|||
component: () => import("@/views/enforce/scanQrCode.vue"), |
|||
meta: { |
|||
isKeepAlive: true, |
|||
}, |
|||
}, |
|||
//执法端扫码页面
|
|||
{ |
|||
path: "/enforce/scanPage", |
|||
name: "scanPage", |
|||
component: () => import("@/views/enforce/scanPage.vue"), |
|||
meta: { |
|||
isKeepAlive: true, |
|||
}, |
|||
}, |
|||
] |
|||
|
|||
export {routes} |
|||
Loading…
Reference in new issue