{showToolbar && (
表单设计
}
onClick={handleImport}
disabled={readonly}
>
导入 JSON
} onClick={handleExport}>
导出 JSON
} onClick={() => setPreviewVisible(true)}>
预览
}
danger
onClick={handleClear}
disabled={readonly}
>
清空
}
onClick={handleSave}
disabled={readonly}
>
保存
{extraActions}
)}
{/* 左侧组件面板 */}
{/* 中间设计画布 */}
{/* 右侧属性面板 */}
{/* 拖拽覆盖层 - 显示正在拖拽的元素 */}
{activeId && activeId.startsWith('new-') ? (
{allComponents.find(c => `new-${c.type}` === activeId)?.label || '组件'}
) : null}
{/* 预览模态框 */}
setPreviewVisible(false)}
width={formConfig.formWidth || 600}
styles={{
body: {
maxHeight: '60vh',
minHeight: '300px',
overflowY: 'auto',
overflowX: 'hidden',
padding: 0,
}
}}
footer={
}
>