Ant Design 中 对话框Modal 作为详情弹框展示 右下角只需一个按钮

 

const { Modal, Button } = antd;

class App extends React.Component {
  state = {
    loading: false,
    visible: false,
  } 
 render() {
    const { visible, loading } = this.state;
    return (
      
"Title" onOk={this.handleOk} onCancel={this.handleCancel} footer={[ // 定义右下角 按钮的地方 可根据需要使用 一个或者 2个按钮 , , ]} >
); } } ReactDOM.render(, mountNode);复制代码

或者是使用Modal.info方法等 提示方式
 Modal.info({
    title: 'This is a notification message',
    content: (
      

some messages...some messages...

some messages...some messages...

), onOk() {}, }); 复制代码


你可能感兴趣的:(Ant Design 中 对话框Modal 作为详情弹框展示 右下角只需一个按钮)