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

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

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