文件上传组件:解决不能点击下载文件的问题、支持多选文件上传、新增超出文件最大数量与超出单文件大小相应的错误提示。

This commit is contained in:
Zhou Mingfa
2024-02-22 17:26:19 +08:00
parent 18c1ac5a5b
commit 1812cb3d6b
2 changed files with 36 additions and 6 deletions

View File

@@ -32,7 +32,7 @@ export const fileApi = {
/**
* 下载文件流根据fileKey @author 胡克
*/
downLoadFile: (fileName, fileKey) => {
downLoadFile: (fileKey) => {
return getDownload('/support/file/downLoad', { fileKey });
},
};