import React from "react"; import { Modal, Button, Row, Col } from "antd"; import { WeaInput, WeaSelect } from "ecCom"; export default class CopyFormModal extends React.Component { constructor(props) { super(props); this.state = { name: "", taxAgentId: "" }; } render() { const { taxAgentStore } = this.props; const { taxAgentOption } = taxAgentStore; return ( this.props.onCancel()} footer={ }> 账套名称 { this.setState({ name: value }); }} /> 个税扣缴义务人 { this.setState({ taxAgentId: value }); }} /> ); } }