|
|
|
---
|
|
|
|
order: 0
|
|
|
|
title:
|
|
|
|
zh-CN: 基本
|
|
|
|
en-US: Basic
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
第一个对话框。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Basic modal.
|
|
|
|
|
|
|
|
```jsx
|
|
|
|
import { Modal, Button } from 'antd';
|
|
|
|
|
|
|
|
class App extends React.Component {
|
|
|
|
state = { visible: false };
|
|
|
|
|
|
|
|
showModal = () => {
|
|
|
|
this.setState({
|
|
|
|
visible: true,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
handleOk = e => {
|
|
|
|
console.log(e);
|
|
|
|
this.setState({
|
|
|
|
visible: false,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
handleCancel = e => {
|
|
|
|
console.log(e);
|
|
|
|
this.setState({
|
|
|
|
visible: false,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<Button type="primary" onClick={this.showModal}>
|
|
|
|
Open Modal
|
|
|
|
</Button>
|
|
|
|
<Modal
|
|
|
|
title="Basic Modal"
|
|
|
|
visible={this.state.visible}
|
|
|
|
onOk={this.handleOk}
|
|
|
|
onCancel={this.handleCancel}
|
|
|
|
>
|
|
|
|
<p>Some contents...</p>
|
|
|
|
<p>Some contents...</p>
|
|
|
|
<p>Some contents...</p>
|
|
|
|
</Modal>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ReactDOM.render(<App />, mountNode);
|
|
|
|
```
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.ant-modal p {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
</style>
|