|
|
@@ -363,7 +363,8 @@ |
|
|
|
@mouseover="isShowIcon" |
|
|
|
@mouseout="ishideIcon" |
|
|
|
> |
|
|
|
<div class="yiyun_wenjian_list" v-if="file.isShowFile == true"> |
|
|
|
<el-tooltip :content="file.strToolTip" :disabled="file.strToolTip == ''" placement="right-start" effect="light"> |
|
|
|
<div class="yiyun_wenjian_list" v-if="file.isShowFile == true" > |
|
|
|
<div> |
|
|
|
<div |
|
|
|
class="defultImage-mid" |
|
|
@@ -390,7 +391,7 @@ |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<!-- 標簽 --> |
|
|
|
<div class="eidtTip" v-if=" file.status == 1">工作中</div> |
|
|
|
<div class="eidtTip" v-if=" file.status == 1" >工作中</div> |
|
|
|
|
|
|
|
<div v-if="file.status == 0" class="yijianxietong isonselect_defual"> |
|
|
|
<i |
|
|
@@ -577,6 +578,7 @@ |
|
|
|
{{ file.version }} |
|
|
|
</span> |
|
|
|
</div> |
|
|
|
</el-tooltip> |
|
|
|
</div> |
|
|
|
</draggable> |
|
|
|
<!--显示文件夹组 --> |
|
|
@@ -2057,7 +2059,7 @@ export default { |
|
|
|
dialogNewSuperMapVisible: false, |
|
|
|
newSuperMap: { showName: "", description: "" }, |
|
|
|
mapAddress: "北京天安门", |
|
|
|
isClient: false, // 是否是客户端 |
|
|
|
isClient: true, // 是否是客户端 |
|
|
|
|
|
|
|
/**新建文件分组 start*/ |
|
|
|
dialogNewFolderGroup: false, //新建文件分组组弹窗 |
|
|
@@ -3718,6 +3720,13 @@ export default { |
|
|
|
offset: 100, |
|
|
|
duration: 2500 |
|
|
|
}); |
|
|
|
if(thisApp.isClient) |
|
|
|
{ |
|
|
|
var newFileName=file.archName +"." +file.extension; |
|
|
|
// 客户端重命名文件 |
|
|
|
// 1.strFileId:文件ID;2.strNewFileName:新文件名;3.strUserId:用户ID |
|
|
|
back.renameFile(file.archID,newFileName,sessionStorage.userId); |
|
|
|
} |
|
|
|
} |
|
|
|
}) |
|
|
|
.catch(function(error) { |
|
|
@@ -4420,6 +4429,14 @@ export default { |
|
|
|
duration: 2500 |
|
|
|
}); |
|
|
|
thisApp.goFolder(thisApp.nowFolderIndex); |
|
|
|
var nowFile=response.data.data; |
|
|
|
var newFileName=file.archName+"."+file.extension; |
|
|
|
if(thisApp.isClient) |
|
|
|
{ |
|
|
|
// 客户复制文件 |
|
|
|
// 1.strFileId:文件ID;2.strNewFileName:新文件名;3.strUserId:用户ID;4.strFolderId:目的文件夹ID |
|
|
|
back.copyFile(nowFile.archID,newFileName,sessionStorage.userId,nowFile.folderID); |
|
|
|
} |
|
|
|
} else { |
|
|
|
this.$notify({ |
|
|
|
title: "温馨提示", |
|
|
@@ -4512,6 +4529,23 @@ export default { |
|
|
|
}); |
|
|
|
thisApp.dialogCopyAndMove = false; |
|
|
|
thisApp.listFiles(); |
|
|
|
var nowFile=response.data.data; |
|
|
|
var newFileName=file.archName+"."+file.extension; |
|
|
|
if(thisApp.isClient) |
|
|
|
{ |
|
|
|
var file = response.data.data; |
|
|
|
if(thisApp.classif == "copy") |
|
|
|
{ |
|
|
|
// 客户复制文件 |
|
|
|
// 1.strFileId:文件ID;2.strNewFileName:新文件名;3.strUserId:用户ID;4.strFolderId:目的文件夹ID;5:strNewFileID:新文件ID |
|
|
|
back.copyFile(thisApp.BtnRightFile.archID,newFileName,sessionStorage.userId,nowFile.folderID,nowFile.archID); |
|
|
|
} |
|
|
|
else{ |
|
|
|
// 客户端移动文件 |
|
|
|
// 1.strFileId:文件ID;2.strNewFileName:新文件名;3.strUserId:用户ID;4.strFolderId:目的文件夹ID |
|
|
|
back.moveFile(nowFile.archID,newFileName,sessionStorage.userId,nowFile.folderID); |
|
|
|
} |
|
|
|
} |
|
|
|
} else { |
|
|
|
thisApp.$notify({ |
|
|
|
title: "温馨提示", |
|
|
@@ -5157,6 +5191,11 @@ export default { |
|
|
|
this.dialogNewCloudFileVisible = false; |
|
|
|
this.isShowNewFiledialog = false; |
|
|
|
this.createCloudFileName = ""; |
|
|
|
var file=response.data.data; |
|
|
|
if(this.isClient) |
|
|
|
{ |
|
|
|
thisApp.clientDownLoad(file,1); |
|
|
|
} |
|
|
|
} else { |
|
|
|
this.$notify({ |
|
|
|
title: "温馨提示", |
|
|
|