Browse Source

[VersionBeta] V.1.0.0.0

[Adds]
1.客户端上传文件添加分组
master
xzx 4 years ago
parent
commit
04904f33cb
1 changed files with 7 additions and 1 deletions
  1. +7
    -1
      src/views/main_web/workspace.vue

+ 7
- 1
src/views/main_web/workspace.vue View File

@@ -3703,9 +3703,15 @@ export default {
clientUpload() { clientUpload() {
if (this.isClient) { if (this.isClient) {
this.isShowNewFiledialog = false; this.isShowNewFiledialog = false;
var foldergroupId="";
if(this.dbClickSelectedFolderGroupData != null && JSON.stringify(this.dbClickSelectedFolderGroupData) != "{}")
{
foldergroupId = this.dbClickSelectedFolderGroupData.folderGroupID;
}
back.uploadFile( back.uploadFile(
this.listUserFolders[this.nowFolderIndex].folderID, this.listUserFolders[this.nowFolderIndex].folderID,
sessionStorage.userId
sessionStorage.userId,
foldergroupId
); );
} }
}, },