fix valida field params bug

This commit is contained in:
baiyaaaaa 2016-12-29 21:58:58 +08:00 committed by 杨奕
parent 5493a13523
commit 1df8c50dfb
2 changed files with 6 additions and 6 deletions

View File

@ -793,11 +793,11 @@
### Form Methods
| 方法名 | 说明 |
|---------- |-------------- |
| validate(cb) | 对整个表单进行校验的方法 |
| validateField(prop, cb) | 对部分表单字段进行校验的方法 |
| resetFields | 对整个表单进行重置,将所有字段值重置为初始值并移除校验结果 |
| 方法名 | 说明 | 参数
|---------- |-------------- | --------------
| validate | 对整个表单进行校验的方法 | Function(callback: Function(boolean))
| validateField | 对部分表单字段进行校验的方法 | Function(prop: string, callback: Function(errorMessage: string))
| resetFields | 对整个表单进行重置,将所有字段值重置为空并移除校验结果 | -
### Form-Item Attributes

View File

@ -139,7 +139,7 @@
this.validateState = !errors ? 'success' : 'error';
this.validateMessage = errors ? errors[0].message : '';
callback(errors);
callback(this.validateMessage);
});
},
resetField() {