Browse Source

执法监督码-执法端二维码扫描

master
chenrui 3 years ago
parent
commit
c45889edf6
  1. 34
      src/router/enforceHome.js

34
src/router/enforceHome.js

@ -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…
Cancel
Save