فهرست منبع

迭代八-巡查工作创建

zhangyihao 8 ماه پیش
والد
کامیت
ff0ef146eb
2فایلهای تغییر یافته به همراه15 افزوده شده و 2 حذف شده
  1. 12 2
      src/router/routes.ts
  2. 3 0
      src/views/worker/inspectionWork/index.vue

+ 12 - 2
src/router/routes.ts

@@ -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
+        }
       }
     ]
   },

+ 3 - 0
src/views/worker/inspectionWork/index.vue

@@ -0,0 +1,3 @@
+<template>
+  巡查工作首页
+</template>