浏览代码

暂时隐藏回收站

dev-remain
kim131 4 年前
父节点
当前提交
51be33976b
共有 2 个文件被更改,包括 2 次插入3 次删除
  1. +1
    -1
      src/components/app-header/app-header.vue
  2. +1
    -2
      src/views/main_web/workspace/workspace.new.vue

+ 1
- 1
src/components/app-header/app-header.vue 查看文件

@@ -32,7 +32,7 @@
</div>
<div class="app-header-content-right">
<slot name="right"></slot>
<span @click="toRecycle" v-if ="showUserCenter">
<span @click="toRecycle" v-if="false">
<i
class="Cicon icon font_family icon-icon_huishouzhan"
:class="{inRecycle:isInRecycle}"


+ 1
- 2
src/views/main_web/workspace/workspace.new.vue 查看文件

@@ -999,7 +999,7 @@ export default {
},
// 协作文件下的文件展示过滤
filterFilesInCoop(fileList){
const { folderPath = '', folderId } = this.currentFolderInCoop;
const { folderPath = '' } = this.currentFolderInCoop;
return fileList.filter(file=> {
if(file.relativePath !== folderPath) {
return false;
@@ -1010,7 +1010,6 @@ export default {
},
// 协作文件下的文件夹展示过滤
filterFoldersInCoop(folderList) {
const {id: folderId} = this.currentNodeFolder;
const { folderPath = ''} = this.currentFolderInCoop;
return folderList.filter(folder => {
if(folder.parentFolderPath !== folderPath) {


正在加载...
取消
保存