export interface ModalConfig { /** * 组件对象,用于区分组件类型 */ ui: { type: 'input'; }; /** * 弹框类型 默认为'confirm' */ type: string; /** * 弹框body样式 */ bodyStyle: object; /** * title内容 */ title: string; /** * 对话框是否可见 */ isVilible: boolean; /** * 对话框宽度 */ width: number; /** * 对话框内容 */ content: string; /** * footer内容 */ footer: object; }