ant-design/components/modal/demo/button-props.md

67 lines
1.3 KiB
Markdown
Raw Normal View History

---
order: 11
title:
zh-CN: 自定义页脚按钮属性
en-US: Customize footer buttons props
---
## zh-CN
传入 `okButtonProps``cancelButtonProps` 可分别自定义确定按钮和取消按钮的 props。
## en-US
2019-04-19 22:06:38 +08:00
Passing `okButtonProps` and `cancelButtonProps` will customize the OK button and cancel button props.
2019-05-07 14:57:32 +08:00
```jsx
import { Modal, Button } from 'antd';
class App extends React.Component {
2019-05-07 14:57:32 +08:00
state = { visible: false };
2018-06-27 16:14:47 +08:00
showModal = () => {
this.setState({
visible: true,
});
2019-05-07 14:57:32 +08:00
};
2018-06-27 16:14:47 +08:00
2019-05-07 14:57:32 +08:00
handleOk = e => {
console.log(e);
this.setState({
visible: false,
});
2019-05-07 14:57:32 +08:00
};
2018-06-27 16:14:47 +08:00
2019-05-07 14:57:32 +08:00
handleCancel = e => {
console.log(e);
this.setState({
visible: false,
});
2019-05-07 14:57:32 +08:00
};
2018-06-27 16:14:47 +08:00
render() {
return (
<div>
2018-08-25 22:04:15 +08:00
<Button type="primary" onClick={this.showModal}>
Open Modal with customized button props
</Button>
<Modal
title="Basic Modal"
visible={this.state.visible}
onOk={this.handleOk}
onCancel={this.handleCancel}
okButtonProps={{ disabled: true }}
cancelButtonProps={{ disabled: true }}
>
<p>Some contents...</p>
<p>Some contents...</p>
<p>Some contents...</p>
</Modal>
</div>
);
}
}
ReactDOM.render(<App />, mountNode);
2019-05-07 14:57:32 +08:00
```