From 4110f158252c9cd68f813553beff24b7bd1d1479 Mon Sep 17 00:00:00 2001 From: zyn Date: Tue, 19 Sep 2023 17:16:53 +0800 Subject: [PATCH] =?UTF-8?q?=E9=87=8D=E6=9E=84=E5=9B=BD=E5=86=85=E5=A4=96?= =?UTF-8?q?=E6=94=BF=E7=AD=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/navMenu/index.vue | 10 +- .../policy/components/addStructure.vue | 185 +++ .../policy/components/advancedSearch.vue | 355 +++++ .../policy/components/configStandDrawer.vue | 317 ++++ .../policy/components/editDrawer.vue | 1342 +++++++++++++++++ .../policy/components/exportFileDialog.vue | 78 + .../policy/components/mainTable.vue | 634 ++++++++ .../policy/components/policySearch.vue | 92 ++ .../policy/components/policyTable.vue | 302 ++++ .../policy/components/policyTree.vue | 261 ++++ src/pages/policyRegulation/policy/index.vue | 123 ++ src/router/index.js | 11 + 12 files changed, 3705 insertions(+), 5 deletions(-) create mode 100644 src/pages/policyRegulation/policy/components/addStructure.vue create mode 100644 src/pages/policyRegulation/policy/components/advancedSearch.vue create mode 100644 src/pages/policyRegulation/policy/components/configStandDrawer.vue create mode 100644 src/pages/policyRegulation/policy/components/editDrawer.vue create mode 100644 src/pages/policyRegulation/policy/components/exportFileDialog.vue create mode 100644 src/pages/policyRegulation/policy/components/mainTable.vue create mode 100644 src/pages/policyRegulation/policy/components/policySearch.vue create mode 100644 src/pages/policyRegulation/policy/components/policyTable.vue create mode 100644 src/pages/policyRegulation/policy/components/policyTree.vue create mode 100644 src/pages/policyRegulation/policy/index.vue diff --git a/src/components/navMenu/index.vue b/src/components/navMenu/index.vue index 2cc157a54..cda4843c9 100644 --- a/src/components/navMenu/index.vue +++ b/src/components/navMenu/index.vue @@ -229,11 +229,11 @@ path: '/nationalPolicy', menuId: '6557e9c4ce672af71be5807052da126b' }, - // { - // title: '国内外政策', - // path: '/Policy', - // menuId: '6557e9c4ce672af71be5807052da126b' - // }, + { + title: '国内外政策', + path: '/Policy', + menuId: '6557e9c4ce672af71be5807052da126b' + }, { title: '标准跟踪清单', path: '/standardTrackingList', diff --git a/src/pages/policyRegulation/policy/components/addStructure.vue b/src/pages/policyRegulation/policy/components/addStructure.vue new file mode 100644 index 000000000..05f42f7b9 --- /dev/null +++ b/src/pages/policyRegulation/policy/components/addStructure.vue @@ -0,0 +1,185 @@ + + + + + diff --git a/src/pages/policyRegulation/policy/components/advancedSearch.vue b/src/pages/policyRegulation/policy/components/advancedSearch.vue new file mode 100644 index 000000000..c79e6d6fd --- /dev/null +++ b/src/pages/policyRegulation/policy/components/advancedSearch.vue @@ -0,0 +1,355 @@ + + + + + diff --git a/src/pages/policyRegulation/policy/components/configStandDrawer.vue b/src/pages/policyRegulation/policy/components/configStandDrawer.vue new file mode 100644 index 000000000..a42c6e1c2 --- /dev/null +++ b/src/pages/policyRegulation/policy/components/configStandDrawer.vue @@ -0,0 +1,317 @@ + + + + + diff --git a/src/pages/policyRegulation/policy/components/editDrawer.vue b/src/pages/policyRegulation/policy/components/editDrawer.vue new file mode 100644 index 000000000..edf179028 --- /dev/null +++ b/src/pages/policyRegulation/policy/components/editDrawer.vue @@ -0,0 +1,1342 @@ + + + + + diff --git a/src/pages/policyRegulation/policy/components/exportFileDialog.vue b/src/pages/policyRegulation/policy/components/exportFileDialog.vue new file mode 100644 index 000000000..976d32e59 --- /dev/null +++ b/src/pages/policyRegulation/policy/components/exportFileDialog.vue @@ -0,0 +1,78 @@ + + + + + diff --git a/src/pages/policyRegulation/policy/components/mainTable.vue b/src/pages/policyRegulation/policy/components/mainTable.vue new file mode 100644 index 000000000..05d10f201 --- /dev/null +++ b/src/pages/policyRegulation/policy/components/mainTable.vue @@ -0,0 +1,634 @@ + + + + + diff --git a/src/pages/policyRegulation/policy/components/policySearch.vue b/src/pages/policyRegulation/policy/components/policySearch.vue new file mode 100644 index 000000000..3748e6e51 --- /dev/null +++ b/src/pages/policyRegulation/policy/components/policySearch.vue @@ -0,0 +1,92 @@ + + + + + diff --git a/src/pages/policyRegulation/policy/components/policyTable.vue b/src/pages/policyRegulation/policy/components/policyTable.vue new file mode 100644 index 000000000..9257a928b --- /dev/null +++ b/src/pages/policyRegulation/policy/components/policyTable.vue @@ -0,0 +1,302 @@ + + + + + diff --git a/src/pages/policyRegulation/policy/components/policyTree.vue b/src/pages/policyRegulation/policy/components/policyTree.vue new file mode 100644 index 000000000..add037f04 --- /dev/null +++ b/src/pages/policyRegulation/policy/components/policyTree.vue @@ -0,0 +1,261 @@ + + + + + diff --git a/src/pages/policyRegulation/policy/index.vue b/src/pages/policyRegulation/policy/index.vue new file mode 100644 index 000000000..8e9781a52 --- /dev/null +++ b/src/pages/policyRegulation/policy/index.vue @@ -0,0 +1,123 @@ + + + + + + diff --git a/src/router/index.js b/src/router/index.js index 7299ca608..b5ee5df89 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -3894,6 +3894,17 @@ const routes = [ menuId: '6557e9c4ce672af71be5807052da126b' } }, + { + path: '/Policy', + name: 'Policy', + component: () => + import('@/pages/policyRegulation/policy'), + meta: { + requireAuth: true, + title: '国内外政策', + menuId: '6557e9c4ce672af71be5807052da126b' + } + }, { path: '/standardTrackingList', name: 'StandardTrackingList',