diff --git a/components/apolloTable/editFormV3/index.tsx b/components/apolloTable/editFormV3/index.tsx index b276b6b257c00393595c6e92d6bb9ad398450eec..44a74ac9ef3fef20651a4f3f4fca447284caf2ee 100644 --- a/components/apolloTable/editFormV3/index.tsx +++ b/components/apolloTable/editFormV3/index.tsx @@ -126,6 +126,9 @@ class FormWrap extends Component { if (_.isEqual(temp, newVal)) { return; } + if (!!item.requiredFlag && !newVal[0].value) { + return + } if (typeof onBlurFn === 'function') { onBlurFn(changedValue) }