Commit 9f7f5065 by wufan

fix:修复复制文件夹问题

parent a6fc77e5
...@@ -103,10 +103,9 @@ class CopyFileModal extends React.Component { ...@@ -103,10 +103,9 @@ class CopyFileModal extends React.Component {
if (allowCopy === 0) { if (allowCopy === 0) {
Service.Hades('public/hadesStore/copyFolder', _params).then((res) => { Service.Hades('public/hadesStore/copyFolder', _params).then((res) => {
if (res.success) { if (res.success) {
this.getFileList(disk, newParentId) message.success('复制成功');
this.getFileList(disk, newParentId);
} }
}).finally(() => {
message.success('复制成功');
}) })
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment