zhouna hace 4 años
padre
commit
461b8cf7e8
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2 0
      src/components/knowledgeExtra/AddNewRule.vue

+ 2 - 0
src/components/knowledgeExtra/AddNewRule.vue

@@ -275,12 +275,14 @@
             ruleTypeChange(val){       //规则类型选中
                 this.form.parRuleType=val;
                 this.form.parLenCode='';
+                this.form.parMsg="";
                 const obj = this.ruleTypeList.find((it)=>it.id===val);//console.log(val)
                 this.ruleTermTypeList = obj.subMenuList;
                 this.setInitGroupData();
             },
             ruleTermChange(val){        //规则术语类型选中
                 this.form.parLenCode=val;
+                this.form.parMsg="";
                 const obj = this.ruleTermTypeList.find((it)=>it.code===val);
                 this.form.parLenName=obj.name;
                 this.baseTypeList = obj.subMenuList;