|
@@ -510,6 +510,7 @@ export default {
|
|
};
|
|
};
|
|
this.excludedConceptIds.push(row.conceptId);
|
|
this.excludedConceptIds.push(row.conceptId);
|
|
this.form.concepts.push(concepts);
|
|
this.form.concepts.push(concepts);
|
|
|
|
+ this.leftList = this.form.concepts
|
|
this.conceptList = [];
|
|
this.conceptList = [];
|
|
this.$nextTick(() => {
|
|
this.$nextTick(() => {
|
|
setTimeout(() => {
|
|
setTimeout(() => {
|
|
@@ -532,11 +533,11 @@ export default {
|
|
let concepts = {
|
|
let concepts = {
|
|
conceptId: it.conceptId,
|
|
conceptId: it.conceptId,
|
|
conceptLibType: it.libType ? it.libType : it.conceptLibType,
|
|
conceptLibType: it.libType ? it.libType : it.conceptLibType,
|
|
- conceptLibName: it.conceptName
|
|
|
|
|
|
+ conceptLibName: it.conceptName? it.conceptName : it.conceptLibName,
|
|
};
|
|
};
|
|
this.excludedConceptIds.push(it.conceptId);
|
|
this.excludedConceptIds.push(it.conceptId);
|
|
- this.leftList.push(concepts);
|
|
|
|
this.form.concepts.push(concepts);
|
|
this.form.concepts.push(concepts);
|
|
|
|
+ this.leftList = this.form.concepts
|
|
});
|
|
});
|
|
this.conceptList = [];
|
|
this.conceptList = [];
|
|
this.$nextTick(() => {
|
|
this.$nextTick(() => {
|