wyq 3 rokov pred
rodič
commit
8a93f34889

+ 1 - 2
src/components/knowledgeExtra/AddTermSet.vue

@@ -665,7 +665,6 @@ export default {
             let text = '';
             if (data.unMatchList.length > 0 || data.disableList.length > 0 ) {
               let arr = data.unMatchList.concat(data.disableList)
-              console.log(arr)
               arr.forEach(it => {
                 text += it.conceptLibName + '\n';
               });
@@ -676,7 +675,7 @@ export default {
             }
             if (data.matchList.length > 0) {
               this.processing(data.matchList);
-              if (data.unMatchList.length == 0) {
+              if (data.unMatchList.length == 0 && data.disableList.length == 0) {
                 this.dialogVisible = false;
               }
             }