From 982b91ef34e9bcc5358c671e7b6e8f5a20963231 Mon Sep 17 00:00:00 2001 From: BianLzhaoMin <11485688+bianliangzhaomin123@user.noreply.gitee.com> Date: Tue, 18 Nov 2025 17:03:34 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../docCenter/components/tableCom/move.vue | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/src/views/publicService/docCenter/components/tableCom/move.vue b/src/views/publicService/docCenter/components/tableCom/move.vue index a92bf4d..2ad4403 100644 --- a/src/views/publicService/docCenter/components/tableCom/move.vue +++ b/src/views/publicService/docCenter/components/tableCom/move.vue @@ -89,12 +89,21 @@ export default { }, // 移动文档 - async moveDocument(fileId, targetParentId, parentId, parentIds) { + async moveDocument( + fileId, + targetParentId, + parentId, + parentIds, + type, + toType, + ) { const params = { id: fileId, newParentId: targetParentId, - parentId: parentId, + parentId, parentIds: parentIds, + type, + toType, } try { const res = await moveDocCenterAPI(params) @@ -128,6 +137,8 @@ export default { this.selectedFolder.id, file.parentId, file.parentIds, + file.type, + this.selectedFolder.type, ), )