import React from 'react' import { Modal, Row, Col } from "antd" import { WeaInput } from 'ecCom' export default class CopySchemaModal extends React.Component { constructor(props){ super(props) this.state = { value : "" } } render() { return ( this.props.onCancel()} visible={this.props.visible}> 方案名称 { this.setState({value: v}) this.props.onChange(v)}} /> ) } }