综合查询导出参数

This commit is contained in:
zzyuan 2024-12-26 12:22:46 +08:00
parent 85c88df8a9
commit 433f26c4d0
1 changed files with 4 additions and 4 deletions

View File

@ -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`,
)
},