update sheep/components/s-uploader/choose-and-upload-file.js.
修复上传文件时,directory丢失导致创建不了目标文件目录的问题。 Signed-off-by: macro <16534421@qq.com>pull/156/head
parent
1b936a3988
commit
367810086a
|
@ -251,7 +251,7 @@ async function uploadFiles(choosePromise, { onChooseFile, onUploadProgress, dire
|
|||
} else {
|
||||
// 后端上传
|
||||
for (let file of files) {
|
||||
const { data } = await FileApi.uploadFile(file.path);
|
||||
const { data } = await FileApi.uploadFile(file.path, directory);
|
||||
file.url = data;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue