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