|
|
@@ -545,7 +545,7 @@ |
|
|
|
</div> |
|
|
|
|
|
|
|
<div |
|
|
|
v-if="file.status == 0" |
|
|
|
v-if="file.status == 1" |
|
|
|
class="yijianxietong isonselect_defual" |
|
|
|
> |
|
|
|
<i |
|
|
@@ -573,7 +573,7 @@ |
|
|
|
<i |
|
|
|
class="icon font_family icon-icon_status_wenjianbiaojiwancheng yijianIcon" |
|
|
|
title="点击暂停协同" |
|
|
|
@click="setFileStatus(file, 0, '更新为工作中', 1)" |
|
|
|
@click="setFileStatus(file, 1, '更新为工作中', 1)" |
|
|
|
></i> |
|
|
|
</div> |
|
|
|
<div |
|
|
@@ -839,7 +839,7 @@ |
|
|
|
<span |
|
|
|
v-if=" |
|
|
|
nowFolderName == '公共文件夹' && |
|
|
|
file.createUserID == userId |
|
|
|
file.createUserId == userId |
|
|
|
" |
|
|
|
class="yiyunwenjian_infodesc" |
|
|
|
>由我创建</span |
|
|
@@ -847,7 +847,7 @@ |
|
|
|
<span |
|
|
|
v-if=" |
|
|
|
nowFolderName == '公共文件夹' && |
|
|
|
file.createUserID != userId |
|
|
|
file.createUserId != userId |
|
|
|
" |
|
|
|
class="yiyunwenjian_infodesc" |
|
|
|
>{{ file.cnName }}创建</span |
|
|
@@ -860,7 +860,7 @@ |
|
|
|
<span |
|
|
|
v-if=" |
|
|
|
nowFolderName != '公共文件夹' && |
|
|
|
file.createUserID != userId |
|
|
|
file.createUserId != userId |
|
|
|
" |
|
|
|
class="yiyunwenjian_infodesc" |
|
|
|
>{{ file.cnName }}创建</span |
|
|
@@ -3845,14 +3845,16 @@ export default { |
|
|
|
if(isCommonFolder) { |
|
|
|
this.loadCommitedComFiles(); |
|
|
|
} |
|
|
|
// else { |
|
|
|
// if (this.curactive == 0) { |
|
|
|
// this.listCollaborationFiles(); |
|
|
|
// } else if (this.curactive == 1) { |
|
|
|
// this.myPublicFilesList=[]; |
|
|
|
// this.loadListCommonFiles(); |
|
|
|
// } |
|
|
|
// } |
|
|
|
else { |
|
|
|
if (this.curactive == 0) { |
|
|
|
// this.listCollaborationFiles(); |
|
|
|
this.fileindex = 0; |
|
|
|
} else if (this.curactive == 1) { |
|
|
|
this.fileindex = 1; |
|
|
|
// this.myPublicFilesList=[]; |
|
|
|
// this.loadListCommonFiles(); |
|
|
|
} |
|
|
|
} |
|
|
|
this.refreshFileStatus(); |
|
|
|
// debugger; |
|
|
|
// if (currentFolder.folderName == "公共文件夹") { |
|
|
@@ -6371,11 +6373,11 @@ export default { |
|
|
|
workTab(num) { |
|
|
|
this.curactive = num; |
|
|
|
this.fileindex = num; |
|
|
|
if (num == 0) { |
|
|
|
this.listCollaborationFiles(); |
|
|
|
} else if (num == 1) { |
|
|
|
this.loadListCommonFiles(); |
|
|
|
} |
|
|
|
// if (num == 0) { |
|
|
|
// this.listCollaborationFiles(); |
|
|
|
// } else if (num == 1) { |
|
|
|
// this.loadListCommonFiles(); |
|
|
|
// } |
|
|
|
}, |
|
|
|
/** |
|
|
|
* 协作文件展开 |
|
|
|