Showing
1 changed file
with
3 additions
and
2 deletions
... | ... | @@ -271,8 +271,9 @@ export const useNodeFieldDisplay = ({ |
271 | 271 | if (!forms.length) return sourceParentNodes; |
272 | 272 | |
273 | 273 | const ids = forms.map((item) => item.qxProps?.formId); |
274 | - if (JSON.stringify(ids) === JSON.stringify(formIds) && ids.length) | |
275 | - return targetParentNodes; | |
274 | + // TODO 这个判断 会拿前面已渲染的数据 导致回显不对 | |
275 | + // if (JSON.stringify(ids) === JSON.stringify(formIds) && ids.length) | |
276 | + // return targetParentNodes; | |
276 | 277 | |
277 | 278 | if (Array.isArray(ids) && ids.length && subset) { |
278 | 279 | try { | ... | ... |