|
@@ -59,6 +59,7 @@
|
|
|
.left_box {
|
|
|
margin: 30px 0;
|
|
|
overflow: hidden;
|
|
|
+ min-height: calc(100vh - 410px);
|
|
|
}
|
|
|
.tabs {
|
|
|
max-width: 100%;
|
|
@@ -78,6 +79,7 @@
|
|
|
.right_box {
|
|
|
margin: 30px 0;
|
|
|
overflow: hidden;
|
|
|
+ min-height: calc(100vh - 410px);
|
|
|
}
|
|
|
.tabs {
|
|
|
max-width: 100%;
|
|
@@ -568,7 +570,8 @@ export default {
|
|
|
this.excludedConceptIds.push(it.conceptId);
|
|
|
this.form.concepts.push(concepts);
|
|
|
});
|
|
|
- this.leftList = this.unique(this.form.concepts);;
|
|
|
+ this.form.concepts = this.unique(this.form.concepts)
|
|
|
+ this.leftList = this.form.concepts;
|
|
|
this.conceptList = [];
|
|
|
this.multipleSelection = [];
|
|
|
this.$nextTick(() => {
|