You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# 基本
|
|
|
|
|
|
|
|
- order: 0
|
|
|
|
|
|
|
|
第一个对话框。
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
````jsx
|
|
|
|
var Modal = antd.Modal;
|
|
|
|
|
|
|
|
var Test = React.createClass({
|
|
|
|
getInitialState(){
|
|
|
|
return{
|
|
|
|
visible: false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
showModal(e) {
|
|
|
|
this.setState({
|
|
|
|
visible: true,
|
|
|
|
mousePosition: {x:e.pageX,y:e.pageY}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
handleOk() {
|
|
|
|
console.log('点击了确定');
|
|
|
|
this.setState({
|
|
|
|
visible: false
|
|
|
|
});
|
|
|
|
},
|
|
|
|
render() {
|
|
|
|
return <div>
|
|
|
|
<button className="ant-btn ant-btn-primary" onClick={this.showModal}>显示对话框</button>
|
|
|
|
<Modal title="第一个 Modal"
|
|
|
|
visible={this.state.visible}
|
|
|
|
mousePosition={this.state.mousePosition}
|
|
|
|
onOk={this.handleOk}
|
|
|
|
onCancel={this.handleCancel}>
|
|
|
|
<p>对话框的内容</p>
|
|
|
|
<p>对话框的内容</p>
|
|
|
|
<p>对话框的内容</p>
|
|
|
|
</Modal>
|
|
|
|
</div>;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
React.render(<Test/> , document.getElementById('components-modal-demo-basic'));
|
|
|
|
````
|
|
|
|
|