From 9731dcbd88d4c49eb0df1834bb0d8ec71e53a522 Mon Sep 17 00:00:00 2001 From: Dayu <1010@qq.com> Date: Fri, 12 Jul 2024 16:35:43 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AF=A6=E6=83=85=E9=A1=B5=E9=9A=90=E8=97=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/views/index.js | 40 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/src/router/views/index.js b/src/router/views/index.js index 23c83ca..e439539 100644 --- a/src/router/views/index.js +++ b/src/router/views/index.js @@ -87,4 +87,44 @@ export default [{ component: () => import( /* webpackChunkName: "views" */ '@/views/inspection/inspectionobjectDetail') }] + }, { + path: '/inspection', + component: Layout, + redirect: '/inspection/index', + children: [{ + path: 'inspectionrouteDetail', + name: '巡检路线详情', + meta: { + menu: false + }, + component: () => + import( /* webpackChunkName: "views" */ '@/views/inspection/inspectionrouteDetail') + }] + }, { + path: '/inspection', + component: Layout, + redirect: '/inspection/index', + children: [{ + path: 'inspectionplanDetail', + name: '巡检计划详情', + meta: { + menu: false + }, + component: () => + import( /* webpackChunkName: "views" */ '@/views/inspection/inspectionPlanDetail') + }] + }, { + path: '/inspection', + component: Layout, + redirect: '/inspection/index', + children: [{ + path: 'inspectiontasksDetail', + name: '巡检任务详情', + meta: { + menu: false + }, + component: () => + import( /* webpackChunkName: "views" */ '@/views/inspection/inspectiontasksDetail') }] +} + ]