修复 form 底下的 service 重新拉取数据不同步的问你题

This commit is contained in:
2betop 2020-07-23 13:38:04 +08:00
parent ed13dde3a5
commit c6b1f2ae41

View File

@ -269,8 +269,7 @@ export default class FormControl extends React.PureComponent<
if ( if (
form !== store && form !== store &&
data !== prevProps.data && data !== prevProps.data &&
(value = getVariable(data as any, name)) !== (value = getVariable(data as any, name)) !== this.getValue()
getVariable(prevProps.data, name)
) { ) {
this.handleChange(value, false, true); this.handleChange(value, false, true);
} }