mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
fix(tmagic-form-runtime): 画布无法点击选中组件
This commit is contained in:
parent
47a21d6544
commit
a2c79c79cd
@ -38,6 +38,7 @@ interface AppOptionsConfig {
|
||||
designWidth?: number;
|
||||
curPage?: Id;
|
||||
useMock?: boolean;
|
||||
disabledFlexible?: boolean;
|
||||
pageFragmentContainerType?: string | string[];
|
||||
iteratorContainerType?: string | string[];
|
||||
transformStyle?: (style: Record<string, any>) => Record<string, any>;
|
||||
@ -94,7 +95,7 @@ class App extends EventEmitter {
|
||||
this.useMock = options.useMock;
|
||||
}
|
||||
|
||||
if (this.jsEngine === 'browser') {
|
||||
if (this.jsEngine === 'browser' && !options.disabledFlexible) {
|
||||
this.flexible = new Flexible({ designWidth: options.designWidth });
|
||||
}
|
||||
|
||||
|
@ -6,7 +6,6 @@
|
||||
:component-group-list="componentGroupList"
|
||||
:props-configs="propsConfigs"
|
||||
:render="render"
|
||||
:can-select="canSelect"
|
||||
:disabled-page-fragment="true"
|
||||
:disabled-stage-overlay="true"
|
||||
:stage-rect="{ width: 'calc(100% - 70px)', height: '100%' }"
|
||||
@ -25,12 +24,7 @@ import { Document } from '@element-plus/icons-vue';
|
||||
|
||||
import { guid, type MApp, NodeType } from '@tmagic/core';
|
||||
import { MenuBarData, SideBarData, TMagicEditor, traverseNode } from '@tmagic/editor';
|
||||
import {
|
||||
canSelect,
|
||||
COMPONENT_GROUP_LIST as componentGroupList,
|
||||
propsConfigs,
|
||||
useRuntime,
|
||||
} from '@tmagic/tmagic-form-runtime';
|
||||
import { COMPONENT_GROUP_LIST as componentGroupList, propsConfigs, useRuntime } from '@tmagic/tmagic-form-runtime';
|
||||
|
||||
import formDsl from '../configs/formDsl';
|
||||
|
||||
|
@ -1,12 +1,5 @@
|
||||
<template>
|
||||
<MForm
|
||||
ref="mForm"
|
||||
:key="config?.id"
|
||||
:id="config?.id"
|
||||
:data-magic-id="config?.id"
|
||||
:config="formConfig"
|
||||
:init-values="values"
|
||||
></MForm>
|
||||
<MForm ref="mForm" :key="config?.id" :data-tmagic-id="config?.id" :config="formConfig" :init-values="values"></MForm>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
|
@ -12,8 +12,6 @@ export * from './component-group-list';
|
||||
|
||||
export const propsConfigs = formConfigs;
|
||||
|
||||
export const canSelect = (el: HTMLElement) => Boolean(el.dataset.magicId);
|
||||
|
||||
export const useRuntime = ({
|
||||
plugins = [],
|
||||
fillConfig = (config) => config,
|
||||
|
@ -24,6 +24,7 @@ export const useFormConfig = (props: AppProps) => {
|
||||
|
||||
let app: TMagicApp | undefined = new TMagicApp({
|
||||
ua: contentWindow?.navigator.userAgent,
|
||||
disabledFlexible: true,
|
||||
platform: 'editor',
|
||||
});
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user