mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
fix(runtime): 更新page后,在编辑器中无法打开蒙层
由于更新page后,会去判断app.page.data对象是否为dsl中page的配置,如果不是会销毁page,重新new,就导致overlay中page的监听失效 fix #587
This commit is contained in:
parent
fc1a7a09ff
commit
69c555f567
@ -93,7 +93,11 @@ export default defineComponent({
|
||||
|
||||
const nodeInstance = app.page?.getNode(config.id);
|
||||
if (nodeInstance) {
|
||||
nodeInstance.setData(config);
|
||||
nodeInstance.setData(newNode);
|
||||
}
|
||||
|
||||
if (app.page?.data.id === config.id) {
|
||||
app.page.setData(newNode);
|
||||
}
|
||||
},
|
||||
|
||||
|
@ -90,7 +90,11 @@ window.magic?.onRuntimeReady({
|
||||
|
||||
const nodeInstance = app.page?.getNode(config.id);
|
||||
if (nodeInstance) {
|
||||
nodeInstance.setData(config);
|
||||
nodeInstance.setData(newNode);
|
||||
}
|
||||
|
||||
if (app.page?.data.id === config.id) {
|
||||
app.page.setData(newNode);
|
||||
}
|
||||
},
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user