mirror of https://github.com/ElemeFE/element
Form: 如果需要验证的fields为空,调用验证时立刻返回callback (#3944)
* Form: 如果需要验证的fields为空,调用验证时立刻返回callback 同时修复几个代码格式用来通过npm run dist * fix travis * fix travis * fix travispull/3950/head
parent
81ba7084e3
commit
5eef48b97e
|
@ -59,6 +59,10 @@
|
|||
validate(callback) {
|
||||
let valid = true;
|
||||
let count = 0;
|
||||
// 如果需要验证的fields为空,调用验证时立刻返回callback
|
||||
if (this.fields.length === 0 && callback) {
|
||||
callback(true);
|
||||
}
|
||||
this.fields.forEach((field, index) => {
|
||||
field.validate('', errors => {
|
||||
if (errors) {
|
||||
|
|
|
@ -158,4 +158,5 @@
|
|||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
</script>
|
||||
|
||||
|
|
|
@ -172,4 +172,5 @@
|
|||
);
|
||||
}
|
||||
};
|
||||
</script>
|
||||
</script>
|
||||
|
||||
|
|
|
@ -27,4 +27,5 @@
|
|||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
</script>
|
||||
|
||||
|
|
Loading…
Reference in New Issue