fix(editor): 更新根节点出错

This commit is contained in:
roymondchen 2022-03-08 20:08:29 +08:00 committed by jia000
parent 979336c052
commit 412c78153c

View File

@ -289,8 +289,6 @@ class Editor extends BaseService {
if (!info.node) throw new Error(`获取不到id为${config.id}的节点`);
const node = cloneDeep(toRaw(info.node));
const { parent } = info;
if (!parent) throw new Error('获取不到父级节点');
let newConfig = await this.toggleFixedPosition(toRaw(config), node, this.get<MApp>('root'));
@ -303,6 +301,9 @@ class Editor extends BaseService {
return newConfig;
}
const { parent } = info;
if (!parent) throw new Error('获取不到父级节点');
const parentNodeItems = parent.items;
const index = getNodeIndex(newConfig, parent);