From 78954d2e1166ced0f2772674cd11a25bf1f57d25 Mon Sep 17 00:00:00 2001 From: zhujiyan <17812234322@163.com> Date: Tue, 28 May 2024 14:11:01 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8A=80=E6=9C=AF=E7=9B=91=E7=9D=A3=E8=AE=A1?= =?UTF-8?q?=E5=88=92-=E5=AE=9E=E6=96=BD=E9=97=AE=E9=A2=98=E6=94=B9?= =?UTF-8?q?=E4=B8=BA=E6=96=B0=E9=A1=B5=E9=9D=A2=E8=B7=B3=E8=BD=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/static.ts | 23 ++++--- .../plan/components/effectProblem/index.vue | 64 +++++++++++-------- src/views/pqs/supervise/plan/index.vue | 12 +++- 3 files changed, 61 insertions(+), 38 deletions(-) diff --git a/src/router/static.ts b/src/router/static.ts index 63ebd867..3aa8137d 100644 --- a/src/router/static.ts +++ b/src/router/static.ts @@ -58,7 +58,6 @@ export const adminBaseRoute = { title: pageTitle('router.eventView') } } - ] }, { @@ -85,7 +84,7 @@ export const adminBaseRoute = { meta: { title: pageTitle('router.schemeHistory') } - }, + } ] }, { @@ -121,12 +120,21 @@ export const adminBaseRoute = { }, { path: 'ProgramReviewInter', - component: () => import('@/views/pqs/supervise/interfere/components/normalizationManager/programReview.vue'), + component: () => + import('@/views/pqs/supervise/interfere/components/normalizationManager/programReview.vue'), name: 'ProgramReview', meta: { title: pageTitle('router.programReview') } }, + { + path: 'effectProblem', + component: () => import('@/views/pqs/supervise/plan/components/effectProblem/index.vue'), + name: 'PlanEffectProblem', + meta: { + title: pageTitle('router.effectProblem') + } + } // { // path: 'manager/model/edit', // component: () => import('@/views/bpm/model/editor/index.vue'), @@ -151,9 +159,9 @@ export const adminBaseRoute = { // activeMenu: '/bpm/manager/model' // } // }, - ] - }, /*{ + }, + /*{ path: '/bpm', name: 'bpm', meta: { @@ -179,7 +187,6 @@ export const adminBaseRoute = { ] },*/ - ] } @@ -191,7 +198,7 @@ const staticRoutes: Array = [ adminBaseRoute, { path: '/', - redirect: (to) => { + redirect: to => { return { name: 'adminMainLoading' } @@ -221,7 +228,7 @@ const staticRoutes: Array = [ { // 后台找不到页面了-可能是路由未加载上 path: adminBaseRoutePath + ':path(.*)*', - redirect: (to) => { + redirect: to => { return { name: 'adminMainLoading', params: { diff --git a/src/views/pqs/supervise/plan/components/effectProblem/index.vue b/src/views/pqs/supervise/plan/components/effectProblem/index.vue index 324f4810..a7fa4a10 100644 --- a/src/views/pqs/supervise/plan/components/effectProblem/index.vue +++ b/src/views/pqs/supervise/plan/components/effectProblem/index.vue @@ -1,5 +1,6 @@