This commit is contained in:
sjl
2025-10-16 10:44:19 +08:00
parent 7d6dc55a76
commit 0ae3047240
3 changed files with 17 additions and 6 deletions

View File

@@ -190,9 +190,15 @@
// 导出设备
const downloadFile = async () => {
ElMessageBox.confirm('确认导出标准设备?', '温馨提示', {type: 'warning'}).then(() => {
useDownload(exportPqStandardDev, '标准设备导出数据', {...proTable.value?.searchParam}, false, '.xlsx')
})
ElMessageBox.confirm('确认导出标准设备?', '温馨提示', {
type: 'warning',
confirmButtonText: '确定',
cancelButtonText: '取消'
}).then(() => {
useDownload(exportPqStandardDev, '标准设备导出数据', {...proTable.value?.searchParam}, false, '.xlsx')
})
}
//导入设备