去掉上传软件超时设置

This commit is contained in:
2026-04-09 16:52:27 +08:00
parent 97c0142425
commit f3e6747341
2 changed files with 64 additions and 2 deletions
+2 -2
View File
@@ -120,8 +120,8 @@ export function uploadFile(formData, options = {}) {
url: "/platform/uploadfile",
method: "post",
data: formData,
// 大安装包 / 极弱网:2 小时;勿设置 Content-Type(由浏览器自动带 boundary
timeout: 2 * 60 * 60 * 1000,
// 不设置超时时间,等待文件上传完毕;勿设置 Content-Type(由浏览器自动带 boundary
timeout: 0,
};
if (typeof options.onUploadProgress === "function") {
config.onUploadProgress = options.onUploadProgress;