/* * Author: 黎永顺 * Description: * Date: 2022-06-20 13:53:14 * LastEditTime: 2022-06-21 13:30:00 */ import React from "react"; import { Modal, Button, Row, Col } from "antd"; import { WeaInput, WeaSelect, WeaError } 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 }); !value && this.refs.weaNameError.showError(); }} /> 个税扣缴义务人 { this.setState({ taxAgentId: value }); !value && this.refs.weaTaxAgentError.showError(); }} /> ); } }