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

Merge remote-tracking branch 'origin/master'

...@@ -853,10 +853,12 @@ export default class ZdyTable extends Component { ...@@ -853,10 +853,12 @@ export default class ZdyTable extends Component {
} }
if (cell.uuid) { if (cell.uuid) {
// debugger; // debugger;
cell.content = { if(cell.content){
...cell.content, cell.content = {
...getActiveJson(currentFormKey, cell.uuid), ...cell.content,
}; ...getActiveJson(currentFormKey, cell.uuid),
};
}
// 27282 双选会报名后管理员修改举办时间 但是单位申请信息么有随着更新 // 27282 双选会报名后管理员修改举办时间 但是单位申请信息么有随着更新
} }
......
export default function getActiveJson(formKey = '', uuid = ''){ export default function getActiveJson(formKey = '', uuid = ''){
if(!formKey || !uuid){ if(!formKey || !uuid){
return {}; return undefined;
} }
if(window.smartFormGlobalProps?.activeJsonConfig && window.smartFormGlobalProps.activeJsonConfig[formKey]){ if(window.smartFormGlobalProps?.activeJsonConfig && window.smartFormGlobalProps.activeJsonConfig[formKey]){
return window.smartFormGlobalProps.activeJsonConfig[formKey][uuid] || {}; return window.smartFormGlobalProps.activeJsonConfig[formKey][uuid] || undefined;
} }
return {}; return undefined;
} }
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论