Browse Source

解决情况搜索内容仍有结果出现(2618)

zhangxc 5 years ago
parent
commit
b353f81304
1 changed files with 3 additions and 1 deletions
  1. 3 1
      src/components/medicalTerm/AddAssistCheckMultRelation.vue

+ 3 - 1
src/components/medicalTerm/AddAssistCheckMultRelation.vue

@@ -265,7 +265,9 @@ import apis from '@api/medicalTerm.js';
         api.getConceptInfoAssay(param).then((res) => {
           const { data } = res
           if(data.code == '0') {
-            this.conceptList = data.data
+            if(this.conceptText.trim()) {
+              this.conceptList = data.data
+            }
           }
         })
       },