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