Browse Source

Merge branch 'termLink0615' into test

wyq 3 years ago
parent
commit
64cf50fbc3
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/components/common/LtModal.vue

+ 3 - 3
src/components/common/LtModal.vue

@@ -80,9 +80,9 @@
                       <el-option
                         v-for="item in uniqueNameList"
                         :key="item.icd10Code"
-                        :label="item.name"
-                        :value="item"
-                        :title="item.name"
+                        :label="searchType == 2 ? `${item.uniqueName}(${item.name})` : item.name"
+                        :value="searchType == 2 ? `${item.uniqueName}` : item"
+                        :title="searchType == 2 ? `${item.uniqueName}(${item.name})` : item.name"
                       ></el-option>
                     </el-select>
                   </el-form-item>