From af9d5cd4a57e5436b74b765298fb573767f63437 Mon Sep 17 00:00:00 2001 From: BianLzhaoMin <11485688+bianliangzhaomin123@user.noreply.gitee.com> Date: Tue, 30 Sep 2025 13:58:09 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../three-and-one/detail/components/three-one-table.vue | 4 +++- .../three-and-one/month-detail/components/header-info.vue | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/views/synthesize-query/three-and-one/detail/components/three-one-table.vue b/src/views/synthesize-query/three-and-one/detail/components/three-one-table.vue index 3581d05..956267b 100644 --- a/src/views/synthesize-query/three-and-one/detail/components/three-one-table.vue +++ b/src/views/synthesize-query/three-and-one/detail/components/three-one-table.vue @@ -309,7 +309,9 @@ export default { console.log('row', row) this.download( '/bmw/pmProject/exportThreeAndOne', - {}, + { + monthId: row.id, + }, '三表一册.xlsx', ) }, diff --git a/src/views/synthesize-query/three-and-one/month-detail/components/header-info.vue b/src/views/synthesize-query/three-and-one/month-detail/components/header-info.vue index fd9b1ac..de993b1 100644 --- a/src/views/synthesize-query/three-and-one/month-detail/components/header-info.vue +++ b/src/views/synthesize-query/three-and-one/month-detail/components/header-info.vue @@ -284,7 +284,9 @@ export default { // console.log('下载三表一册') this.download( '/bmw/pmProject/exportThreeAndOne', - {}, + { + monthId: this.id, + }, '三表一册.xlsx', ) },