|
|
@@ -288,18 +288,18 @@ |
|
|
|
</draggable> |
|
|
|
<draggable |
|
|
|
class="list-group" |
|
|
|
:list="folderGroupBreads" |
|
|
|
:list="myListFolderGroups" |
|
|
|
group="group" |
|
|
|
id="bread1" |
|
|
|
> |
|
|
|
<a |
|
|
|
class="list-group-item yywenjiantitle-text" |
|
|
|
v-for="item in folderGroupBreads" |
|
|
|
v-bind:key="item.foldergroupID" |
|
|
|
v-bind:key="item.id" |
|
|
|
href="javascript:;" |
|
|
|
@click="breadNodeClickEvent(item, false)" |
|
|
|
> |
|
|
|
{{ item.folderGroupName }} |
|
|
|
{{ item.folderName }} |
|
|
|
<i class="el-icon-arrow-left"></i> |
|
|
|
</a> |
|
|
|
</draggable> |
|
|
@@ -340,7 +340,7 @@ |
|
|
|
</draggable> |
|
|
|
<draggable |
|
|
|
class="list-group" |
|
|
|
:list="folderGroupBreads" |
|
|
|
:list="myListFolderGroups" |
|
|
|
group="group" |
|
|
|
id="bread2" |
|
|
|
> |
|
|
@@ -380,7 +380,7 @@ |
|
|
|
<i class="el-icon-arrow-left first-leftarrow fl"></i> |
|
|
|
<draggable |
|
|
|
class="list-group" |
|
|
|
:list="folderGroupBreads" |
|
|
|
:list="myListFolderGroups" |
|
|
|
group="group" |
|
|
|
id="bread3" |
|
|
|
> |
|
|
@@ -3086,7 +3086,6 @@ export default { |
|
|
|
this.dbClickSelectedFolderGroupData != null && |
|
|
|
JSON.stringify(this.dbClickSelectedFolderGroupData) != "{}" |
|
|
|
) { |
|
|
|
console.log("我要更新当前文件夹啦"); |
|
|
|
this.intoFoldergroup(this.dbClickSelectedFolderGroupData); |
|
|
|
} else { |
|
|
|
this.listFiles(); |
|
|
@@ -5296,6 +5295,7 @@ export default { |
|
|
|
this.isCreating = true; |
|
|
|
file.ModifyUserId=sessionStorage.userId; |
|
|
|
file.ModifyTime=new Date(); |
|
|
|
//file.milestone=1; |
|
|
|
const Res = await services.AddArchMilesStone(file); |
|
|
|
if(Res.Code !=-1){ |
|
|
|
this.refreshPages(); |
|
|
@@ -5307,14 +5307,6 @@ export default { |
|
|
|
duration: 2500, |
|
|
|
}); |
|
|
|
this.isCreating = false; |
|
|
|
}else{ |
|
|
|
this.$notify({ |
|
|
|
title: "温馨提示", |
|
|
|
message: Res.Msg, |
|
|
|
type: "error", |
|
|
|
offset: 100, |
|
|
|
duration: 5000, |
|
|
|
}); |
|
|
|
} |
|
|
|
}, |
|
|
|
// createMilestone: function (file) { |
|
|
@@ -6552,14 +6544,6 @@ export default { |
|
|
|
offset: 100, |
|
|
|
duration: 2500, |
|
|
|
}); |
|
|
|
} else { |
|
|
|
this.$notify({ |
|
|
|
title: "温馨提示", |
|
|
|
message: "创建失败", |
|
|
|
type: "error", |
|
|
|
offset: 100, |
|
|
|
duration: 5000, |
|
|
|
}); |
|
|
|
} |
|
|
|
this.dialogNewFolderGroup = false; |
|
|
|
|
|
|
@@ -6646,23 +6630,22 @@ export default { |
|
|
|
listOtherFiles: folderResInfo.workFile, |
|
|
|
listOtherFolderGroups: null, |
|
|
|
} |
|
|
|
console.log("res"); |
|
|
|
console.log(res) |
|
|
|
if (this.currentPageType == 0) { |
|
|
|
// 加载我的文件 |
|
|
|
this.myFilesList = this.folderFileList.listMyFiles; |
|
|
|
// 加载我的文件夹 zxm+ |
|
|
|
this.myListFolderGroups = this.folderFileList.listFolderGroups; |
|
|
|
this.folderGroupBreads =this.folderFileList.folderGroupBreads; |
|
|
|
this.folderGroupBreads =this.folderFileList.listFolderGroups.concat([]); |
|
|
|
this.folderGroupBreads.unshift(foldergroup); |
|
|
|
} else { |
|
|
|
// 加载工作文件 |
|
|
|
this.myFilesList = this.folderFileList.listOtherFiles; |
|
|
|
// 加载工作文件分组 zxm+ |
|
|
|
this.myListFolderGroups = this.folderFileList.listOtherFolderGroups; |
|
|
|
this.folderGroupBreads =this.folderFileList.folderGroupBreads; |
|
|
|
this.folderGroupBreads =null; |
|
|
|
} |
|
|
|
clearInterval(this.timer); |
|
|
|
this.timer = setInterval(() => { |
|
|
|
this.intoFoldergroup(foldergroup); |
|
|
|
}, 8 * 1000); |
|
|
|
}, 3 * 1000); |
|
|
|
|
|
|
|
}, |
|
|
|
// intoFoldergroup: function (foldergroup) { |
|
|
|