fix: 上传接口变更

This commit is contained in:
TsMask
2025-02-26 11:12:06 +08:00
parent 7429a55734
commit 5a61fc355e
13 changed files with 47 additions and 26 deletions

View File

@@ -118,7 +118,7 @@ function fnUpload(up: UploadRequestOption) {
if (res.code === 200) {
message.success('文件上传成功', 3);
state.uploadFilePath = res.data.url;
state.downloadFilePath = res.data.fileName;
state.downloadFilePath = res.data.filePath;
} else {
message.error(res.msg, 3);
}