Browse Source

修复TableForm数据验证不过时loading不恢复问题 (#812)

pull/810/merge
clannadxr 8 years ago
committed by 陈帅
parent
commit
53d2de7a1e
  1. 3
      src/routes/Forms/TableForm.js

3
src/routes/Forms/TableForm.js

@ -97,6 +97,9 @@ export default class TableForm extends PureComponent {
if (!target.workId || !target.name || !target.department) {
message.error('请填写完整成员信息。');
e.target.focus();
this.setState({
loading: false,
});
return;
}
delete target.isNew;

Loading…
Cancel
Save