|
@@ -36,8 +36,15 @@ export class EditorCtrl extends ModuleControl<EditorModule> {
|
|
|
const ParentRef = ref<HTMLElement>();
|
|
|
const PageRef = ref<HTMLElement>();
|
|
|
const CanvasRef = ref<HTMLElement>();
|
|
|
- const init = () => {
|
|
|
- if (!EditorRef.value || !CanvasRef.value || !ParentRef.value) return;
|
|
|
+ let inited = false;
|
|
|
+
|
|
|
+ const init = () => {
|
|
|
+ if (!EditorRef.value || !CanvasRef.value || !ParentRef.value || inited) return;
|
|
|
+
|
|
|
+ clearInterval(refInteral.value)
|
|
|
+ refInteral.value = null;
|
|
|
+ inited = true;
|
|
|
+
|
|
|
console.log("xxxxxxxx=>" , ParentRef.value, PageRef.value);
|
|
|
EditorRef.value.style.width = this.state.width + "px";
|
|
|
EditorRef.value.style.height = this.state.height + "px";
|
|
@@ -53,8 +60,9 @@ export class EditorCtrl extends ModuleControl<EditorModule> {
|
|
|
this.initEditorEvent(EditorRef.value, ParentRef.value as any);
|
|
|
}
|
|
|
|
|
|
+ const refInteral = ref();
|
|
|
onMounted(()=>{
|
|
|
- setTimeout(init, 1000);
|
|
|
+ refInteral.value = setInterval(init, 100);
|
|
|
})
|
|
|
|
|
|
this.doms = {editor:EditorRef, parent: ParentRef, page:PageRef, canvas: CanvasRef};
|