文件路径修改

This commit is contained in:
2026-06-04 10:25:18 +08:00
parent 7ecc69df5e
commit ee9e2c403c
3 changed files with 6 additions and 4 deletions
+2 -2
View File
@@ -528,8 +528,8 @@ function handleDownloadSigned(row) {
message.warning("暂无签署文件可下载");
return;
}
downloadLaunchFile(filePath).then((arrayBuffer) => {
const blob = new Blob([arrayBuffer]);
downloadLaunchFile(filePath).then((res) => {
const blob = new Blob([res.data]);
const url = window.URL.createObjectURL(blob);
const link = document.createElement("a");
link.href = url;