Commit 74645c95 authored by 皮倩雯's avatar 皮倩雯

fix: '验证控制规则必填'

parent cee47bdf
Pipeline #63052 passed with stages
......@@ -453,9 +453,13 @@ const AddModal = props => {
}
});
} else {
formAdd.validateFields().then(validate => {
if (validate) {
onSelect(1.14, keep);
formAdd.validateFields().then(validate1 => {
if (validate1) {
form.validateFields().then(validate => {
if (validate) {
onSelect(1.14, keep);
}
});
}
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment