import React from 'react' import { Modal, Button, Row, Col } from 'antd' import { WeaInput } from 'ecCom' export default class CopyFormModal extends React.Component { constructor(props) { super(props) this.state = { name: "" } } render() { return ( this.props.onCancel()} footer={} > 账套名称 {this.setState({name: value})}} /> ) } }