浏览代码

bug 6841 手术级别异常

morphone1995 4 年之前
父节点
当前提交
c1262b0122

+ 2 - 2
src/components/cdssManage/knowledge/AddKnowledge.vue

@@ -32,7 +32,7 @@
                 v-model.trim="form.name"
                 placeholder="请输入术语名称"
                 @blur="handlePinyin($event)"
-                @input="handleInput"
+                @input="handlePinyinInput"
                 :disabled="form.labelType===''"
               ></el-input>
             </el-form-item>
@@ -462,7 +462,7 @@ export default {
       });
     },
 
-    handleInput(val) {
+    handlePinyinInput(val) {
       this.isTrans = false;
     },
 

+ 2 - 0
src/components/cdssManage/knowledge/OperationForm.vue

@@ -82,6 +82,8 @@ export default {
     },
     // 传值
     handleValue(from) {
+      console.log(from,'from');
+      console.log(this.operationForm[from],'this.operationForm[from]');
       this.$emit('handleInput', {
         type: from,
         value: this.operationForm[from]