mirror of
https://github.com/MrXujiang/h5-Dooring.git
synced 2026-01-07 12:28:13 +00:00
🐛 修复表单组件在画布中单机出现交互弹窗的问题,增强体验
This commit is contained in:
parent
0c758ddda8
commit
4c378c05f9
@ -36,6 +36,8 @@ const FormComponent = (props: IFormConfig & { isTpl: boolean }) => {
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
const isEditorPage = window.location.pathname.indexOf('editor') > -1;
|
||||
return (
|
||||
<>
|
||||
{props.isTpl && (
|
||||
@ -50,6 +52,7 @@ const FormComponent = (props: IFormConfig & { isTpl: boolean }) => {
|
||||
backgroundColor: bgColor,
|
||||
overflow: 'hidden',
|
||||
position: 'absolute',
|
||||
pointerEvents: isEditorPage ? 'none' : 'initial',
|
||||
}}
|
||||
>
|
||||
{title && (
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user