# 自定义页脚 - order: 2 更复杂的例子,自定义了页脚的按钮,点击提交后进入 loading 状态,完成后关闭。 --- ````jsx import { Modal, Button } from 'antd'; const Test = React.createClass({ getInitialState: function() { return { loading: false, visible: false }; }, showModal() { this.setState({ visible: true }); }, handleOk() { this.setState({ loading: true }); setTimeout(() => { this.setState({ loading: false, visible: false }); }, 3000); }, handleCancel() { this.setState({ visible: false }); }, render() { return
返 回, ]}>

对话框的内容

对话框的内容

对话框的内容

对话框的内容

对话框的内容

; } }); ReactDOM.render( , document.getElementById('components-modal-demo-footer')); ````