* 验证所有字段的规则,返回验证是否通过 * @param {Object} event 表单数据对象
(event)
| 507 | * @param {Object} event 表单数据对象 |
| 508 | */ |
| 509 | checkForm(event) { |
| 510 | this.__initData() |
| 511 | |
| 512 | for (let param in this.rules) { |
| 513 | this.setView(param) |
| 514 | this.checkParam(param, this.rules[param], event) |
| 515 | } |
| 516 | |
| 517 | return this.valid() |
| 518 | } |
| 519 | |
| 520 | /** |
| 521 | * 返回验证是否通过 |
nothing calls this directly
no test coverage detected