|
|
@ -246,7 +246,6 @@ export default { |
|
|
|
} else { |
|
|
|
localStorage.setItem('noClick', true) |
|
|
|
} |
|
|
|
console.log('noClick', localStorage.getItem('noClick')) |
|
|
|
// 初始化智能分类的操作 |
|
|
|
if (this.$refs.smartTree) { |
|
|
|
this.treeCurrentNode = null |
|
|
@ -288,6 +287,10 @@ export default { |
|
|
|
'organizationMatter': null |
|
|
|
} |
|
|
|
if ((selectData && selectData.length > 1) || (selectData && selectData.length === 0)) { |
|
|
|
this.isProject = true |
|
|
|
this.isAnjuan = true |
|
|
|
this.$refs.anjuan.selections = [] |
|
|
|
this.$refs.file.selections = [] |
|
|
|
this.projectSelection = {} |
|
|
|
this.$nextTick(() => { |
|
|
|
if (this.$refs.anjuan) { |
|
|
@ -316,6 +319,7 @@ export default { |
|
|
|
this.$nextTick(() => { |
|
|
|
if (this.$refs.anjuan) { |
|
|
|
this.$refs.anjuan.$refs.table.clearSelection() |
|
|
|
this.clearAnjuan() |
|
|
|
this.$refs.anjuan.getTableList() |
|
|
|
if (this.$refs.file) { |
|
|
|
this.$refs.file.$refs.table.clearSelection() |
|
|
@ -335,6 +339,8 @@ export default { |
|
|
|
'organizationMatter': null |
|
|
|
} |
|
|
|
if ((selectData && selectData.length > 1) || (selectData && selectData.length === 0)) { |
|
|
|
this.isAnjuan = true |
|
|
|
this.$refs.file.selections = [] |
|
|
|
this.anjuanSelection = {} |
|
|
|
this.$nextTick(() => { |
|
|
|
if (this.$refs.file) { |
|
|
@ -346,6 +352,7 @@ export default { |
|
|
|
this.anjuanSelection = selectData[0] |
|
|
|
this.$nextTick(() => { |
|
|
|
if (this.$refs.file) { |
|
|
|
this.$refs.file.$refs.table.clearSelection() |
|
|
|
this.$refs.file.getTableList() |
|
|
|
} |
|
|
|
}) |
|
|
@ -353,6 +360,7 @@ export default { |
|
|
|
this.anjuanSelection = data |
|
|
|
this.$nextTick(() => { |
|
|
|
if (this.$refs.file) { |
|
|
|
this.$refs.file.$refs.table.clearSelection() |
|
|
|
this.$refs.file.getTableList() |
|
|
|
} |
|
|
|
}) |
|
|
|