提交 83f81da5 authored 作者: 钟是志's avatar 钟是志

27711 基础数据管理--专业字段去掉方向二字

上级 902f9d78
...@@ -16,8 +16,15 @@ export default class ChildForm extends React.Component { ...@@ -16,8 +16,15 @@ export default class ChildForm extends React.Component {
triggerChange = (changedValue) => { triggerChange = (changedValue) => {
// Should provide an event to pass value to Form. // Should provide an event to pass value to Form.
const onChange = this.props.onChange; const onChange = this.props.onChange;
console.log('ChildForm', changedValue);
if (onChange) { if (onChange) {
onChange(changedValue); if(changedValue && typeof changedValue === 'object' && !Object.keys(changedValue).length){
onChange(changedValue);
// onChange(null);
}else{
onChange(changedValue);
}
} }
}; };
...@@ -125,10 +132,16 @@ export default class ChildForm extends React.Component { ...@@ -125,10 +132,16 @@ export default class ChildForm extends React.Component {
const span = json.span || 24; const span = json.span || 24;
const gutter = json.gutter != null ? json.gutter : 0; const gutter = json.gutter != null ? json.gutter : 0;
const rights = this.props.rights; const rights = this.props.rights;
// console.log(datasAll); // console.log(datasAll);
if (datas == null) { if (datas == null) {
return <div>还没有配置子表单key</div>; return <div>还没有配置子表单key</div>;
} }
if(!objs){
return null;
}
if (isMobile) { if (isMobile) {
return ( return (
<WingBlank size="lg"> <WingBlank size="lg">
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论