Skip to content

Latest commit

 

History

History
56 lines (46 loc) · 1.12 KB

button-props.md

File metadata and controls

56 lines (46 loc) · 1.12 KB
order title
11
zh-CN en-US
自定义页脚按钮属性
Customize footer buttons props

zh-CN

传入 okButtonPropscancelButtonProps 可分别自定义确定按钮和取消按钮的 props。

en-US

Passing okButtonProps and cancelButtonProps will customize the OK button and cancel button props.

import { Modal, Button } from 'antd';

export default () => {
  const [visible, setVisible] = React.useState(false);

  const showModal = () => {
    setVisible(true);
  };

  const handleOk = e => {
    console.log(e);
    setVisible(false);
  };

  const handleCancel = e => {
    console.log(e);
    setVisible(false);
  };

  return (
    <>
      <Button type="primary" onClick={showModal}>
        Open Modal with customized button props
      </Button>
      <Modal
        title="Basic Modal"
        visible={visible}
        onOk={handleOk}
        onCancel={handleCancel}
        okButtonProps={{ disabled: true }}
        cancelButtonProps={{ disabled: true }}
      >
        <p>Some contents...</p>
        <p>Some contents...</p>
        <p>Some contents...</p>
      </Modal>
    </>
  );
};