diff --git a/src/views/main_web/workspace.vue b/src/views/main_web/workspace.vue index ec90c33b..f10e7829 100644 --- a/src/views/main_web/workspace.vue +++ b/src/views/main_web/workspace.vue @@ -3703,9 +3703,15 @@ export default { clientUpload() { if (this.isClient) { this.isShowNewFiledialog = false; + var foldergroupId=""; + if(this.dbClickSelectedFolderGroupData != null && JSON.stringify(this.dbClickSelectedFolderGroupData) != "{}") + { + foldergroupId = this.dbClickSelectedFolderGroupData.folderGroupID; + } back.uploadFile( this.listUserFolders[this.nowFolderIndex].folderID, - sessionStorage.userId + sessionStorage.userId, + foldergroupId ); } },