Commit b3ee15ee authored by 李晓静's avatar 李晓静

Merge branch 'delDetail' into dev

parents 21e1ff94 24f3b8df
......@@ -130,7 +130,12 @@ class FormWrap extends Component {
if (_.isEqual(temp, newVal)) {
return;
}
onBlurFn(changedValue)
if (!!item.requiredFlag && !newVal[0].value) {
return
}
if (typeof onBlurFn === 'function') {
onBlurFn(changedValue)
}
}
return (
<FormItem key={columnName} label={this.renderLabel(item)}>
......
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