欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Antd Checkbox 多选框使用

程序员文章站 2022-07-13 23:04:51
...
{
  getFieldDecorator("IsIssueCorrectionOpinion", {
    initialValue: record.IsIssueCorrectionOpinion,
    valuePropName: "checked",
  })(
    <Checkbox
      onChange={(v) => {
        this.setState({
          IsIssueCorrectionOpinion: v.target.checked,
        });
      }}
    >
      下达整改意见
    </Checkbox>
  );
}

 

相关标签: Antd