Commit 613499c9 authored by huyf's avatar huyf

出货下载相关增加超时时间

parent aec4b6ec
......@@ -257,6 +257,7 @@ export function downloadAgentListFiles(params) {
return request({
url: "/ecw/box-preload-goods/downloadAgentListFiles",
method: "get",
timeout: 3*60*1000,
params,
});
}
......@@ -266,6 +267,7 @@ export function downloadSoncapFiles(params) {
return request({
url: "/ecw/box-preload-goods/downloadSoncapFiles",
method: "get",
timeout: 3*60*1000,
params,
});
}
......@@ -275,6 +277,7 @@ export function downloadCustomFiles(params) {
return request({
url: "/ecw/box-preload-goods/downloadCustomFiles",
method: "get",
timeout: 3*60*1000,
params,
});
}
......@@ -284,6 +287,7 @@ export function downloadLoadGoodsList(params) {
return request({
url: "/ecw/box-preload-goods/downloadLoadGoodsList",
responseType: "blob",
timeout: 3*60*1000,
method: "get",
params,
});
......@@ -294,6 +298,7 @@ export function downloadPreloadGoodsList(params) {
return request({
url: "/ecw/box-preload-goods/downloadPreloadGoodsList",
responseType: "blob",
timeout: 3*60*1000,
method: "get",
params,
});
......@@ -304,6 +309,7 @@ export function downloadReceivableList(params) {
return request({
url: "/ecw/box-preload-goods/downloadReceivableList",
responseType: "blob",
timeout: 3*60*1000,
method: "get",
params,
});
......@@ -314,6 +320,7 @@ export function downloadLadingCopy(params) {
return request({
url: "/ecw/box-lading-copy/downloadLadingCopy",
method: "get",
timeout: 3*60*1000,
params,
});
}
......@@ -334,4 +341,4 @@ export function updateUrl(data) {
method: "put",
data,
});
}
\ No newline at end of file
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment