Browse Source

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

zhangxc 5 năm trước cách đây
mục cha
commit
b353f81304
1 tập tin đã thay đổi với 3 bổ sung1 xóa
  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
+            }
           }
         })
       },