fix 79858

This commit is contained in:
赵霄
2023-12-26 16:50:29 +08:00
parent 28dad68b26
commit 33641cc9c5
2 changed files with 6 additions and 6 deletions
+4 -4
View File
@@ -658,8 +658,8 @@ export default {
}
})
},
clearValidate () {
this.$refs.ruleForm.clearValidate()
clearValidate (fieldNameList) {
this.$refs.ruleForm.clearValidate(fieldNameList)
},
/**
* 国内海外的特殊处理
@@ -688,7 +688,7 @@ export default {
})
}
this.rules = Object.assign({}, rules)
this.clearValidate()
this.clearValidate(fieldNameList)
}
},
getFlag (fieldName) {
@@ -733,7 +733,7 @@ export default {
})
}
this.rules = Object.assign({}, rules)
this.clearValidate()
this.clearValidate(fields)
}
}
}