# 基本 - order: 0 第一个对话框。 --- ````jsx var Modal = antd.Modal; var Button = antd.Button; var App = React.createClass({ getInitialState() { return { visible: false }; }, showModal() { this.setState({ visible: true }); }, handleOk() { console.log('点击了确定'); this.setState({ confirmLoading: false, visible: false }); }, handleCancel() { this.setState({ visible: false }); }, render() { return
对话框的内容
对话框的内容
对话框的内容