瀏覽代碼

公共文件必须点击了才能显示bug修改

master
kim131 4 年之前
父節點
當前提交
d10797d26d
共有 3 個文件被更改,包括 22 次插入20 次删除
  1. +1
    -1
      src/views/components_web/projSetting/projSetting.vue
  2. +20
    -18
      src/views/main_web/workspace/workspace.vue
  3. +1
    -1
      vue.config.js

+ 1
- 1
src/views/components_web/projSetting/projSetting.vue 查看文件

@@ -193,7 +193,7 @@
>
<span>编辑</span>
</file-uploader>
<span class="faceBtn" v-show="isShowSaveAllBtn" @click="setSystemCover">使用随机封面</span>
<span class="faceBtn" v-show="isShowSaveAllBtn" @click="setSystemCoverRandom">使用随机封面</span>
</div>
</div>
</div>


+ 20
- 18
src/views/main_web/workspace/workspace.vue 查看文件

@@ -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();
// }
},
/**
* 协作文件展开


+ 1
- 1
vue.config.js 查看文件

@@ -32,7 +32,7 @@ module.exports = {
proxy: {
'/api/pms': {
// target: 'http://47.104.91.134:8089',
target:'http://10.240.32.156:8089',
target:'http://10.240.32.197:8089',

changeOrigin: true,
secure: false,


Loading…
取消
儲存