浏览代码

Merge branch 'termLink0615' into test

wyq 3 年之前
父节点
当前提交
247819655f
共有 1 个文件被更改,包括 3 次插入2 次删除
  1. 3 2
      src/components/common/LtModal.vue

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

@@ -83,7 +83,7 @@
                         :label="searchType == 2 ? `${item.uniqueName}(${item.name})` : item.name"
                         :value="searchType == 2 ? `${item.uniqueName}` : item"
                         :title="searchType == 2 ? `${item.uniqueName}(${item.name})` : item.name"
-                        @click.native="handleChoose(searchType == 2 ? `${item.uniqueName}` : item.name)"
+                        @click.native="handleChoose(searchType == 2 ? `${item.uniqueName}` : item.name,item.id)"
                       ></el-option>
                     </el-select>
                   </el-form-item>
@@ -269,7 +269,8 @@ export default {
         this.form.source = row.source;
       }
     },
-    handleChoose(val) {
+    handleChoose(val,id) {
+       this.form.conceptId = id
       this.form.searchTextPre = val;
       this.form.searchText = val;
     },