|
@@ -13,7 +13,7 @@ const routes: Array<RouteRecordRaw> = [
|
|
|
{
|
|
|
path: "/yzy/callback",
|
|
|
name: "YzyCallback",
|
|
|
- component: () => import('@/components/YzyCallback/index.vue')
|
|
|
+ component: () => import("@/components/YzyCallback/index.vue")
|
|
|
},
|
|
|
{
|
|
|
path: "/leader",
|
|
@@ -89,7 +89,8 @@ const routes: Array<RouteRecordRaw> = [
|
|
|
{
|
|
|
path: "/districtCountyRollCall",
|
|
|
name: "DistrictCountyRollCall",
|
|
|
- component: () => import("@/views/onlineRollCall/districtCountyRollCall.vue"),
|
|
|
+ component: () =>
|
|
|
+ import("@/views/onlineRollCall/districtCountyRollCall.vue"),
|
|
|
meta: {
|
|
|
title: "分区县点名",
|
|
|
noCache: true
|
|
@@ -135,6 +136,15 @@ const routes: Array<RouteRecordRaw> = [
|
|
|
title: "关于3",
|
|
|
noCache: true
|
|
|
}
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: "inspectionWork",
|
|
|
+ name: "inspectionWork",
|
|
|
+ component: () => import("@/views/worker/inspectionWork/index.vue"),
|
|
|
+ meta: {
|
|
|
+ title: "巡查工作",
|
|
|
+ noCache: true
|
|
|
+ }
|
|
|
}
|
|
|
]
|
|
|
},
|