feat(Form): add resetValidation method

This commit is contained in:
陈嘉涵 2020-02-12 17:08:12 +08:00
parent f204a9871a
commit 8e9e0af17d

View File

@ -67,6 +67,13 @@ export default createComponent({
return this.validateFirst ? this.validateSeq() : this.validateAll();
},
// @exposed-api
resetValidation() {
this.fields.forEach(item => {
item.resetValidation();
});
},
getValues() {
return this.fields.reduce((form, field) => {
form[field.name] = field.formValue;