liwei 1 year ago
parent
commit
6bac511310
1 changed files with 11 additions and 3 deletions
  1. 11 3
      src/modules/editor/controllers/EditorCtrl/index.ts

+ 11 - 3
src/modules/editor/controllers/EditorCtrl/index.ts

@@ -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};