From 433f26c4d0a6884b70580416e944ccd54a8841e2 Mon Sep 17 00:00:00 2001 From: zzyuan <781948537@qq.com> Date: Thu, 26 Dec 2024 12:22:46 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=BC=E5=90=88=E6=9F=A5=E8=AF=A2=E5=AF=BC?= =?UTF-8?q?=E5=87=BA=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/material/stquery/deviceStatusRecord.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/material/stquery/deviceStatusRecord.vue b/src/views/material/stquery/deviceStatusRecord.vue index 25135c24..530adf9b 100644 --- a/src/views/material/stquery/deviceStatusRecord.vue +++ b/src/views/material/stquery/deviceStatusRecord.vue @@ -651,7 +651,7 @@ export default { handleDialogStoreExport() { this.download( 'material/complex_query/exportStorageInfoList', - { ...this.dialogTestedQuery}, + { ...this.dialogQuery}, `综合查询_在库设备_${new Date().getTime()}.xlsx`, ) }, @@ -678,7 +678,7 @@ export default { handleDialogUserExport() { this.download( 'material/complex_query/exportUserRecordList', - { ...this.dialogTestedQuery}, + { ...this.dialogUseQuery}, `综合查询_在用设备_${new Date().getTime()}.xlsx`, ) }, @@ -706,7 +706,7 @@ export default { handleDialogRepairExport() { this.download( 'material/complex_query/exportRepairRecordList', - { ...this.dialogTestedQuery}, + { ...this.dialogRepairQuery}, `综合查询_在修设备_${new Date().getTime()}.xlsx`, ) }, @@ -734,7 +734,7 @@ export default { handleDialogPurchaseExport() { this.download( 'material/complex_query/exportPurchaseRecordList', - { ...this.dialogTestedQuery}, + { ...this.dialogPurchaseQuery}, `综合查询_新购入库设备_${new Date().getTime()}.xlsx`, ) },