/* * Author: 黎永顺 * Description: * Date: 2022-06-20 13:53:14 * LastEditTime: 2022-06-21 13:30:00 */ import React from "react"; import { Button, Col, Modal, Row } from "antd"; import { WeaError, WeaInput, WeaSelect, WeaDialog } from "ecCom"; import "./index.less"; export default class CopyFormModal extends React.Component { constructor(props) { super(props); this.state = { name: "", taxAgentId: "" }; } render() { const { taxAgentStore } = this.props; const { taxAgentAdminOption } = taxAgentStore; return ( this.props.onCancel()} className="copyModalWrapper" buttons={[ ]}> 账套名称 { this.setState({ name: value }); !value && this.refs.weaNameError.showError(); }} /> 个税扣缴义务人 { this.setState({ taxAgentId: value }); !value && this.refs.weaTaxAgentError.showError(); }} /> ); } }