You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.1 KiB
46 lines
1.1 KiB
const routes = [
|
|
// 执法信息登记
|
|
{
|
|
path: "/sign",
|
|
name: "sign",
|
|
component: () => import("@/views/enforce/sign.vue"),
|
|
},
|
|
// 历史检查信息
|
|
{
|
|
path: "/historyCheck",
|
|
name: "historyCheck",
|
|
component: () => import("@/views/enforce/historyCheck.vue"),
|
|
},
|
|
// 企业信息预览页
|
|
{
|
|
path: "/enterpriseScanPreview",
|
|
name: "enterpriseScanPreview",
|
|
component: () => import("@/views/enforce/enterpriseScanPreview.vue"),
|
|
},
|
|
// 企业详情信息
|
|
{
|
|
path: "/enterpriseBaseInfo",
|
|
name: "enterpriseBaseInfo",
|
|
component: () => import("@/views/enforce/enterpriseBaseInfo.vue"),
|
|
},
|
|
// 企业预警信息
|
|
{
|
|
path: "/enterpriseWarningInfo",
|
|
name: "enterpriseWarningInfo",
|
|
component: () => import("@/views/enforce/enterpriseWarningInfo.vue"),
|
|
},
|
|
// 预警列表
|
|
{
|
|
path: "/earlyWarning",
|
|
name: "earlyWarning",
|
|
component: () => import("@/views/enforce/earlyWarning.vue"),
|
|
},
|
|
// pdf预览
|
|
{
|
|
path: "/pdfView",
|
|
name: "pdfView",
|
|
component: () => import("@/views/common/pdfvVew.vue"),
|
|
},
|
|
];
|
|
|
|
export { routes };
|
|
|