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

60 lines
1.2 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.
```tsx
2022-05-23 14:37:16 +08:00
import { Button, Modal } from 'antd';
import React, { useState } from 'react';
const App: React.FC = () => {
const [open, setOpen] = useState(false);
2018-06-27 16:14:47 +08:00
const showModal = () => {
setOpen(true);
2019-05-07 14:57:32 +08:00
};
2018-06-27 16:14:47 +08:00
const handleOk = (e: React.MouseEvent<HTMLElement>) => {
console.log(e);
setOpen(false);
2019-05-07 14:57:32 +08:00
};
2018-06-27 16:14:47 +08:00
const handleCancel = (e: React.MouseEvent<HTMLElement>) => {
console.log(e);
setOpen(false);
2019-05-07 14:57:32 +08:00
};
2018-06-27 16:14:47 +08:00
return (
<>
<Button type="primary" onClick={showModal}>
Open Modal with customized button props
</Button>
<Modal
title="Basic Modal"
open={open}
onOk={handleOk}
onCancel={handleCancel}
okButtonProps={{ disabled: true }}
cancelButtonProps={{ disabled: true }}
>
<p>Some contents...</p>
<p>Some contents...</p>
<p>Some contents...</p>
</Modal>
</>
);
};
export default App;
2019-05-07 14:57:32 +08:00
```