From 6fdcd175b13d6445efdef6ad380c910abf773971 Mon Sep 17 00:00:00 2001 From: zyn Date: Wed, 29 Nov 2023 17:52:03 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=AF=BC=E5=87=BA=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/policyRegulation/meeting/index.vue | 1 + src/pages/policyRegulation/policyTopics/index.vue | 3 ++- .../regulatoryMaterials/components/RegulatoryMaterialsMain.vue | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/pages/policyRegulation/meeting/index.vue b/src/pages/policyRegulation/meeting/index.vue index ac510035b..cd492d751 100644 --- a/src/pages/policyRegulation/meeting/index.vue +++ b/src/pages/policyRegulation/meeting/index.vue @@ -312,6 +312,7 @@ export default { handleExport (exportName) { const params = { ...this.searchForm, + ...this.advancedSearchForm, exportName: exportName, exportIds: this.selectedList.join(',') } diff --git a/src/pages/policyRegulation/policyTopics/index.vue b/src/pages/policyRegulation/policyTopics/index.vue index 675e9c1e8..f850cb5fb 100644 --- a/src/pages/policyRegulation/policyTopics/index.vue +++ b/src/pages/policyRegulation/policyTopics/index.vue @@ -329,7 +329,8 @@ export default { }, handleExport (exportName) { const params = { - ...this.form, + ...this.searchForm, + ...this.advancedSearchForm, exportName: exportName, exportIds: this.selectedList.join(',') } diff --git a/src/pages/policyRegulation/regulatoryMaterials/components/RegulatoryMaterialsMain.vue b/src/pages/policyRegulation/regulatoryMaterials/components/RegulatoryMaterialsMain.vue index 6667af122..90781a214 100644 --- a/src/pages/policyRegulation/regulatoryMaterials/components/RegulatoryMaterialsMain.vue +++ b/src/pages/policyRegulation/regulatoryMaterials/components/RegulatoryMaterialsMain.vue @@ -379,7 +379,7 @@ export default { }, handleExport (exportName) { const params = { - ...this.form, + ...this.searchForm, exportName: exportName, userId: this.$store.getters.userInfo.userId, exportIds: this.selectedList.join(',')