| | |
| | | import React, { useState, useEffect, useRef, Fragment } from "react"; |
| | | import * as $$ from '../../../../utils/utility'; |
| | | import * as $$ from '@/utils/utility'; |
| | | import { Row, Col, Space } from 'antd'; |
| | | import { |
| | | CheckOutlined, |
| | |
| | | caseperfection_legal_active, |
| | | caseperfection_organize, |
| | | caseperfection_organize_active, |
| | | } from '../../../../assets/images/icon'; |
| | | } from '@/assets/images/icon'; |
| | | import { Form, Input, Button, Radio, Select, Modal, Cascader, Upload, Message } from '@arco-design/web-react'; |
| | | import KeyVisits from "./keyVisits"; |
| | | import SelectUnitDialog from "./selectUnitDialog"; |
| | |
| | | const handleSave = () => { |
| | | if (formRef.current) { |
| | | formRef.current.validate(undefined, (errors, values) => { |
| | | props.handleAddParty({ |
| | | ...values, |
| | | partyType: props.dialogType, |
| | | perClass: perClass, |
| | | perClassName: props.dialogType === 0 ? '申请方当事人' : '被申请方当事人' |
| | | }) |
| | | props.onClose() |
| | | if (!errors) { |
| | | props.handleAddParty({ |
| | | ...values, |
| | | partyType: props.dialogType, |
| | | perClass: perClass, |
| | | perClassName: props.dialogType === 0 ? '申请方当事人' : '被申请方当事人' |
| | | }) |
| | | props.onClose() |
| | | } |
| | | }); |
| | | } |
| | | } |