|
@@ -522,6 +522,9 @@ export default {
|
|
this.multipleSelection = val;
|
|
this.multipleSelection = val;
|
|
},
|
|
},
|
|
add() {
|
|
add() {
|
|
|
|
+ if(this.multipleSelection.length == 0){
|
|
|
|
+ return
|
|
|
|
+ }
|
|
this.processing(this.multipleSelection);
|
|
this.processing(this.multipleSelection);
|
|
},
|
|
},
|
|
//处理数据
|
|
//处理数据
|
|
@@ -540,6 +543,7 @@ export default {
|
|
this.leftList = this.form.concepts
|
|
this.leftList = this.form.concepts
|
|
});
|
|
});
|
|
this.conceptList = [];
|
|
this.conceptList = [];
|
|
|
|
+ this.multipleSelection = []
|
|
this.$nextTick(() => {
|
|
this.$nextTick(() => {
|
|
setTimeout(() => {
|
|
setTimeout(() => {
|
|
this.getTreeSearchList();
|
|
this.getTreeSearchList();
|