From 223622650c8c5a93612c1a2ba3861ee7d0a60a04 Mon Sep 17 00:00:00 2001 From: zhangyichen <5277314+zacty@user.noreply.gitee.com> Date: Wed, 13 Apr 2022 16:42:02 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9bug=2052565=20=E6=94=BF?= =?UTF-8?q?=E7=AD=96=E7=9B=B8=E5=85=B3=E5=8A=9F=E8=83=BD=E6=A8=A1=E5=9D=97?= =?UTF-8?q?=E7=8B=AC=E7=AB=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/navMenu/index.vue | 38 ++++++- src/pages/policyRegulation/index.vue | 23 ++++ .../policyRegulation/nationalPolicy/index.vue | 27 +++++ .../policyWorkGroup/index.vue | 74 +++++++++++++ .../policyRegulation/problemControl/index.vue | 100 ++++++++++++++++++ .../standardTrackingList/index.vue | 27 +++++ .../accessStandardsAndRegulations/index.vue | 6 +- .../nonConfomity/index.vue | 6 +- .../workingGroup/index.vue | 8 +- src/router/index.js | 61 +++++++++++ 10 files changed, 355 insertions(+), 15 deletions(-) create mode 100644 src/pages/policyRegulation/index.vue create mode 100644 src/pages/policyRegulation/nationalPolicy/index.vue create mode 100644 src/pages/policyRegulation/policyWorkGroup/index.vue create mode 100644 src/pages/policyRegulation/problemControl/index.vue create mode 100644 src/pages/policyRegulation/standardTrackingList/index.vue diff --git a/src/components/navMenu/index.vue b/src/components/navMenu/index.vue index 7be6eb11c..b6579017b 100644 --- a/src/components/navMenu/index.vue +++ b/src/components/navMenu/index.vue @@ -161,11 +161,11 @@ // path: '/dataStatisComments', // menuId: '' // }, - { - title: '国内外政策', - path: '/foreignRegulationsDatabase', - menuId: 'ef02a3b0af9a4b3ede460456a9591ebc' - }, + // { + // title: '国内外政策', + // path: '/foreignRegulationsDatabase', + // menuId: 'ef02a3b0af9a4b3ede460456a9591ebc' + // }, // // // { // // // title: '标准制修订管理', // // // path: '/demo2One' @@ -208,6 +208,34 @@ // } ] }, + { + title: '政策法规库', + path: '/policyRegulation', + 'icon-class': 'el-icon-s-management', + menuId: 'asdzcfgk', + children: [ + { + title: '问题项管控', + path: '/problemControl', + menuId: '50d7a0c0af4740c486100c257ae6068e' + }, + { + title: '国内外政策', + path: '/nationalPolicy', + menuId: '6557e9c4ce672af71be5807052da126b' + }, + { + title: '标准跟踪清单', + path: '/standardTrackingList', + menuId: 'a26b92e156f68dbfe0d73b0dc068ebe4' + }, + { + title: '政策工作组', + path: '/policyWorkGroup', + menuId: 'f1a4b33a498e58a8a87c954ce5ce6ad6' + } + ] + }, { title: '工作中心', path: '/processCenter', diff --git a/src/pages/policyRegulation/index.vue b/src/pages/policyRegulation/index.vue new file mode 100644 index 000000000..c75eca2c9 --- /dev/null +++ b/src/pages/policyRegulation/index.vue @@ -0,0 +1,23 @@ + + + + + diff --git a/src/pages/policyRegulation/nationalPolicy/index.vue b/src/pages/policyRegulation/nationalPolicy/index.vue new file mode 100644 index 000000000..e6fc85096 --- /dev/null +++ b/src/pages/policyRegulation/nationalPolicy/index.vue @@ -0,0 +1,27 @@ + + + + + diff --git a/src/pages/policyRegulation/policyWorkGroup/index.vue b/src/pages/policyRegulation/policyWorkGroup/index.vue new file mode 100644 index 000000000..2dd70eb39 --- /dev/null +++ b/src/pages/policyRegulation/policyWorkGroup/index.vue @@ -0,0 +1,74 @@ + + + + diff --git a/src/pages/policyRegulation/problemControl/index.vue b/src/pages/policyRegulation/problemControl/index.vue new file mode 100644 index 000000000..2d0ce2e2c --- /dev/null +++ b/src/pages/policyRegulation/problemControl/index.vue @@ -0,0 +1,100 @@ + + + + diff --git a/src/pages/policyRegulation/standardTrackingList/index.vue b/src/pages/policyRegulation/standardTrackingList/index.vue new file mode 100644 index 000000000..12b8507a8 --- /dev/null +++ b/src/pages/policyRegulation/standardTrackingList/index.vue @@ -0,0 +1,27 @@ + + + + + diff --git a/src/pages/regulatoryRepository/accessStandardsAndRegulations/index.vue b/src/pages/regulatoryRepository/accessStandardsAndRegulations/index.vue index 6071af3b9..21dfae7f8 100644 --- a/src/pages/regulatoryRepository/accessStandardsAndRegulations/index.vue +++ b/src/pages/regulatoryRepository/accessStandardsAndRegulations/index.vue @@ -8,9 +8,9 @@ - - - + + + diff --git a/src/pages/regulatoryRepository/nonConfomity/index.vue b/src/pages/regulatoryRepository/nonConfomity/index.vue index 9bc0ef834..86fa0ac08 100644 --- a/src/pages/regulatoryRepository/nonConfomity/index.vue +++ b/src/pages/regulatoryRepository/nonConfomity/index.vue @@ -6,9 +6,9 @@ - - - + + + diff --git a/src/pages/regulatoryRepository/workingGroup/index.vue b/src/pages/regulatoryRepository/workingGroup/index.vue index f3c350c94..e99e5b298 100644 --- a/src/pages/regulatoryRepository/workingGroup/index.vue +++ b/src/pages/regulatoryRepository/workingGroup/index.vue @@ -9,10 +9,10 @@ 标准法规工作组 - - 政策工作组 - - + + + + 工作组统计 diff --git a/src/router/index.js b/src/router/index.js index 02a81cb16..a6fb25b6d 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -3542,6 +3542,67 @@ const routes = [ } ] }, + // 政策法规库 + { + path: '/policyRegulation', + name: 'PolicyRegulation', + redirect: () => { + return 'problemControl' + }, + component: () => + import('@/pages/policyRegulation/index'), + meta: { + requireAuth: true, + title: '政策法规库', + menuId: 'asdzcfgk' + }, + children: [ + { + path: '/problemControl', + name: 'ProblemControl', + component: () => + import('@/pages/policyRegulation/problemControl/index'), + meta: { + requireAuth: true, + title: '问题项管控', + menuId: '50d7a0c0af4740c486100c257ae6068e' + } + }, + { + path: '/nationalPolicy', + name: 'NationalPolicy', + component: () => + import('@/pages/policyRegulation/nationalPolicy'), + meta: { + requireAuth: true, + title: '国内外政策', + menuId: '6557e9c4ce672af71be5807052da126b' + } + }, + { + path: '/standardTrackingList', + name: 'StandardTrackingList', + component: () => + import('@/pages/policyRegulation/standardTrackingList'), + meta: { + requireAuth: true, + title: '标准跟踪清单', + menuId: 'a26b92e156f68dbfe0d73b0dc068ebe4' + } + }, + { + path: '/policyWorkGroup', + name: 'PolicyWorkGroup', + component: () => + import('@/pages/policyRegulation/policyWorkGroup'), + meta: { + requireAuth: true, + title: '政策工作组', + menuId: 'f1a4b33a498e58a8a87c954ce5ce6ad6' + } + } + ] + }, // 配置管理 { path: '/config',