import React,{ Component } from "react"; import { Modal,Input, Checkbox} from "antd"; import '../css/members.css' class ModalWrapper extends Component{ constructor(props){ super(props); this.state={ visible:false, } } setVisible=(visible)=>{ this.setState({ visible }) } onCancel = () => { this.setVisible(false) this.props.onCancel && this.props.onCancel() } onOk = () => { this.props.onOk && this.props.onOk() } render(){ let {flag, visible}=this.state let { onOk, cancelText, okText, title, width, className, bottomRender}=this.props; return( { visible == true ? :"" }
{this.props.children} {this.props.checkBoxValuestype===true?
请先选择课堂
:""}
{ cancelText || '取消' } { okText || "确定" }
{ bottomRender }
) } } export default ModalWrapper;