This commit is contained in:
2024-10-25 19:01:27 +08:00
parent 5b3948f56b
commit 09c8f0e058
3 changed files with 6 additions and 3 deletions

View File

@@ -46,6 +46,9 @@ export function downloadStatisticsTableExcel(query) {
url: 'mes/qc/statistics/downloadStatisticsTableExcel',
method: 'get',
params: query,
responseType:'blob'
config: {
timeout: 1000 * 60 * 60
},
responseType: 'blob'
})
}

View File

@@ -58,7 +58,7 @@ export function delWmOneTimeInventory(pid) {
// 导出
export async function exportOneTimeInventory(query) {
await downFile('/mes/wm/WmOneTimeInventory/export', { ...query })
await downFile('/mes/wm/WmOneTimeInventory/export', { ...query },{timeout:1000*60*60})
}
/**

View File

@@ -58,7 +58,7 @@ export function delWmPolishInventory(pid) {
// 导出
export async function exportPolish(query) {
await downFile('/mes/wm/WmPolishInventory/export', { ...query })
await downFile('/mes/wm/WmPolishInventory/export', { ...query },{timeout:1000*60*60})
}