问题描述
想实现Antd Model弹出框的内容与样式完全自定义,关键在于设置title={null}
、footer={null}
、closable={false}
、bodyStyle={{padding: '0px'}}
解决办法
<Modaltitle={null} footer={null} modalRender={(modal: any) => ( modal )} bodyStyle={{padding: '0px'}} centeredvisible={isShowSelectedLabelPopup} onCancel={this.hideSelectedLabelPopup} closable={false} width={488} ><div>AntdModel内容与样式完全自定义</div></Modal>
如图