import {
|
Button,
|
Col,
|
DatePicker,
|
Divider,
|
Form,
|
Input,
|
Modal,
|
Row,
|
Select,
|
} from "antd";
|
import React, { useEffect, useState } from "react";
|
import Staff from "./staff";
|
|
interface ApplyProps {
|
visible: boolean;
|
onCancel?: () => void;
|
setFormData: (data: any) => void;
|
applyType: string;
|
title: string;
|
}
|
|
const Apply: React.FC<ApplyProps> = (props) => {
|
const { visible, setFormDat, onCancel, applyType, title } = props;
|
|
const [staffVisible, setStaffVisible] = useState(false);
|
|
const onFinish = (values: any) => {
|
console.log(values);
|
// setFormDat(values);
|
};
|
|
// 打开员工列表
|
const onStaffVisible = () => {
|
setStaffVisible(true);
|
};
|
|
// 设置选中员工
|
const onSetStaff = (val: any) => {
|
console.log(val);
|
};
|
|
useEffect(() => {
|
if (visible) {
|
setStaffVisible(false);
|
}
|
}, [visible]);
|
|
return (
|
<Modal
|
width={910}
|
title={title + "申请"}
|
open={visible}
|
onCancel={onCancel}
|
footer={null}
|
className="ModelForm"
|
>
|
<Form
|
name="basic"
|
initialValues={{ remember: true }}
|
style={{ paddingTop: 20 }}
|
onFinish={onFinish}
|
autoComplete="off"
|
>
|
<Form.Item>
|
<Row>
|
<Col
|
span={
|
applyType === "nominationForAppointment" ||
|
applyType === "dismissalApplication" ||
|
applyType === "resignationApplication" ||
|
applyType === "retirementManagement"
|
? 24
|
: 12
|
}
|
>
|
{(applyType === "nominationForAppointment" ||
|
applyType === "dismissalApplication" ||
|
applyType === "resignationApplication") && (
|
<Form.Item
|
labelCol={{ span: 3 }}
|
label="名称"
|
name="applyName"
|
rules={[{ required: true, message: "请输入名称!" }]}
|
>
|
<Input style={{ width: 730 }} />
|
</Form.Item>
|
)}
|
{(applyType === "changeRequest" ||
|
applyType === "applicationForSecondment" ||
|
applyType === "challengeForCause") && (
|
<Form.Item
|
label="名称"
|
name="applyName"
|
labelCol={{ span: 6 }}
|
rules={[{ required: true, message: "请输入名称!" }]}
|
>
|
<Input style={{ width: 300 }} />
|
</Form.Item>
|
)}
|
{applyType === "retirementManagement" && (
|
<Form.Item
|
label="选择员工"
|
name="applyName"
|
labelCol={{ span: 3 }}
|
rules={[{ required: true, message: "请选择员工!" }]}
|
>
|
<Select style={{ width: 300 }} />
|
</Form.Item>
|
)}
|
</Col>
|
<Divider style={{ borderColor: "#ddd" }}>基本信息</Divider>
|
<Col span={12}>
|
<Form.Item
|
label="员工姓名"
|
labelCol={{ span: 6 }}
|
name="employeeName"
|
rules={[{ required: true, message: "请选择员工姓名!" }]}
|
>
|
<Input style={{ width: 300 }} onClick={onStaffVisible} />
|
<Staff
|
open={staffVisible}
|
onCancel={() => setStaffVisible(false)}
|
setData={onSetStaff}
|
/>
|
</Form.Item>
|
</Col>
|
{applyType === "retirementManagement" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="部门名称"
|
name="departName"
|
rules={[{ required: true, message: "请选择部门名称!" }]}
|
>
|
<Input style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "retirementManagement" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="身份证号"
|
name="identyNum"
|
rules={[{ required: true, message: "请选择身份证号!" }]}
|
>
|
<Input style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "retirementManagement" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="性别"
|
name="sex"
|
rules={[{ required: true, message: "请选择性别!" }]}
|
>
|
<Input style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "retirementManagement" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="籍贯"
|
name="origin"
|
rules={[{ required: true, message: "请选择籍贯!" }]}
|
>
|
<Input style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "retirementManagement" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="雇佣类型"
|
name="employmentType"
|
rules={[{ required: true, message: "请选择雇佣类型!" }]}
|
>
|
<Input style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "retirementManagement" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="出生年月"
|
name="birthDate"
|
rules={[{ required: true, message: "请选择出生年月!" }]}
|
>
|
<Input style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "retirementManagement" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="民族"
|
name="nationality"
|
rules={[{ required: true, message: "请选择民族!" }]}
|
>
|
<Input style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "retirementManagement" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="婚姻状况"
|
name="marriageStatus"
|
rules={[{ required: true, message: "请选择婚姻状况!" }]}
|
>
|
<Input style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "retirementManagement" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="政治面貌"
|
name="politicalStatus"
|
rules={[{ required: true, message: "请选择政治面貌!" }]}
|
>
|
<Input style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "retirementManagement" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="毕业院校"
|
name="graduationSchool"
|
rules={[{ required: true, message: "请选择毕业院校!" }]}
|
>
|
<Input style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "retirementManagement" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="专业"
|
name="major"
|
rules={[{ required: true, message: "请选择专业!" }]}
|
>
|
<Input style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "retirementManagement" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="文化程度"
|
name="culturalDegree"
|
rules={[{ required: true, message: "请选择文化程度!" }]}
|
>
|
<Input style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "retirementManagement" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="工种"
|
name="workType"
|
rules={[{ required: true, message: "请选择工种!" }]}
|
>
|
<Input style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "retirementManagement" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="职称"
|
name="workTitle"
|
rules={[{ required: true, message: "请选择职称!" }]}
|
>
|
<Input style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "retirementManagement" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="手机"
|
name="mobile"
|
rules={[{ required: true, message: "请选择手机!" }]}
|
>
|
<Input style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "retirementManagement" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="联系地址"
|
name="contactAddress"
|
rules={[{ required: true, message: "请选择联系地址!" }]}
|
>
|
<Input style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "retirementManagement" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="电子邮件"
|
name="email"
|
rules={[{ required: true, message: "请选择电子邮件!" }]}
|
>
|
<Input style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "retirementManagement" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="家庭住址"
|
name="homeAddress"
|
rules={[{ required: true, message: "请选择家庭住址!" }]}
|
>
|
<Input style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "retirementManagement" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="联系电话"
|
name="contactPhone"
|
rules={[{ required: true, message: "请选择联系电话!" }]}
|
>
|
<Input style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "retirementManagement" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="备注"
|
name="remark"
|
rules={[{ required: true, message: "请填写备注!" }]}
|
>
|
<Input.TextArea
|
style={{ width: 730 }}
|
showCount
|
maxLength={100}
|
/>
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "changeRequest" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="变动日期"
|
name="changeTime"
|
rules={[{ required: true, message: "请选择变动日期!" }]}
|
>
|
<DatePicker style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "changeRequest" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="调动类型"
|
name="changeType"
|
rules={[{ required: true, message: "请选择变动类型!" }]}
|
>
|
<Select style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "nominationForAppointment" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="任职方式"
|
name="applyType"
|
rules={[{ required: true, message: "请选择任职方式!" }]}
|
>
|
<Select style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{(applyType === "dismissalApplication" ||
|
applyType === "resignationApplication") && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="所属部门"
|
name="department"
|
rules={[{ required: true, message: "请选择所属部门!" }]}
|
>
|
<Select style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{(applyType === "dismissalApplication" ||
|
applyType === "resignationApplication") && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="所属职位"
|
name="position"
|
rules={[{ required: true, message: "请选择所属职位!" }]}
|
>
|
<Select style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{(applyType === "dismissalApplication" ||
|
applyType === "resignationApplication") && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="所在城市"
|
name="address"
|
rules={[{ required: true, message: "请选择所在城市!" }]}
|
>
|
<Select style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "changeRequest" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="调前部门"
|
name="changeBeforeDepartment"
|
>
|
<Input style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "changeRequest" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="调后部门"
|
name="changeAfterDepartment"
|
rules={[{ required: true, message: "请选择调后部门!" }]}
|
>
|
<Select style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "changeRequest" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="调前职位"
|
name="changeBeforePosition"
|
>
|
<Input style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "changeRequest" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="调后职位"
|
name="changeAfterPosition"
|
rules={[{ required: true, message: "请选择调后职位!" }]}
|
>
|
<Select style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "changeRequest" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="调前职级"
|
name="changeBeforeRank"
|
>
|
<Input style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "changeRequest" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="调后职级"
|
name="changeAfterRank"
|
rules={[{ required: true, message: "请选择调后职级!" }]}
|
>
|
<Select style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "changeRequest" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="调前基本工资"
|
name="changeBeforeMoney"
|
>
|
<Input style={{ width: 300 }} /> 元
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "changeRequest" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="调后基本工资"
|
name="changeAfterMoney"
|
>
|
<Input style={{ width: 300 }} /> 元
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "changeRequest" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="调前工种"
|
name="changeBeforeJob"
|
>
|
<Input style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "changeRequest" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="调后工种"
|
name="changeAfterJob"
|
rules={[{ required: true, message: "请选择调后工种!" }]}
|
>
|
<Select style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "changeRequest" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="调前状态"
|
name="changeBeforeJob"
|
>
|
<Input style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "changeRequest" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="调后状态"
|
name="changeAfterJob"
|
rules={[{ required: true, message: "请选择调后状态!" }]}
|
>
|
<Select style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "nominationForAppointment" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="所属职位"
|
name="position"
|
rules={[{ required: true, message: "请选择所属职位!" }]}
|
>
|
<Select style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "nominationForAppointment" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="执行时间"
|
name="executeTime"
|
rules={[{ required: true, message: "请选择执行时间!" }]}
|
>
|
<DatePicker style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "applicationForSecondment" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="挂职单位类型"
|
name="secondmentUnitType"
|
>
|
<Select style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "applicationForSecondment" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="挂职单位"
|
name="secondmentUnit"
|
rules={[{ required: true, message: "请选择挂职单位!" }]}
|
>
|
<Select style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "applicationForSecondment" && (
|
<Col span={12}>
|
<Form.Item labelCol={{ span: 6 }} label="岗位" name="post">
|
<Select style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "applicationForSecondment" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="挂职职位"
|
name="secondmentPosition"
|
rules={[{ required: true, message: "请选择挂职职位!" }]}
|
>
|
<Select style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "applicationForSecondment" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="挂职部门"
|
name="secondmentDepartment"
|
rules={[{ required: true, message: "请输入挂职部门!" }]}
|
>
|
<Input style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "applicationForSecondment" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="挂职职级"
|
name="secondmentRank"
|
rules={[{ required: true, message: "请选择挂职职级!" }]}
|
>
|
<Select style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{(applyType === "applicationForSecondment" ||
|
applyType === "challengeForCause") && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="开始时间"
|
name="startTime"
|
rules={[{ required: true, message: "请选择挂职开始时间!" }]}
|
>
|
<DatePicker style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{(applyType === "applicationForSecondment" ||
|
applyType === "challengeForCause") && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="结束时间"
|
name="endTime"
|
rules={[{ required: true, message: "请选择挂职结束时间!" }]}
|
>
|
<DatePicker style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "challengeForCause" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="替代人员"
|
name="substitute"
|
rules={[{ required: true, message: "请选择替代人员!" }]}
|
>
|
<Input style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "resignationApplication" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="离职类型"
|
name="resignationType"
|
rules={[{ required: true, message: "请选择离职类型!" }]}
|
>
|
<Select style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
{applyType === "resignationApplication" && (
|
<Col span={12}>
|
<Form.Item
|
labelCol={{ span: 6 }}
|
label="申请时间"
|
name="resignationTime"
|
rules={[{ required: true, message: "请选择离职时间!" }]}
|
>
|
<DatePicker style={{ width: 300 }} />
|
</Form.Item>
|
</Col>
|
)}
|
</Row>
|
{applyType === "resignationApplication" && (
|
<Form.Item labelCol={{ span: 3 }} label="离职原因" name="reason">
|
<Input.TextArea
|
showCount
|
maxLength={100}
|
style={{ width: 730 }}
|
/>
|
</Form.Item>
|
)}
|
|
{applyType === "resignationApplication" && (
|
<Form.Item labelCol={{ span: 3 }} label="备注" name="remarks">
|
<Input.TextArea
|
showCount
|
maxLength={100}
|
style={{ width: 730 }}
|
/>
|
</Form.Item>
|
)}
|
|
{applyType === "applicationForSecondment" && (
|
<Form.Item labelCol={{ span: 3 }} label="区域" name="domain">
|
<Input.TextArea
|
showCount
|
maxLength={100}
|
style={{ width: 730 }}
|
/>
|
</Form.Item>
|
)}
|
|
{applyType === "applicationForSecondment" && (
|
<Form.Item labelCol={{ span: 3 }} label="挂职原由" name="reason">
|
<Input.TextArea
|
showCount
|
maxLength={100}
|
style={{ width: 730 }}
|
/>
|
</Form.Item>
|
)}
|
|
{applyType === "challengeForCause" && (
|
<Form.Item labelCol={{ span: 3 }} label="回避原由" name="reason">
|
<Input.TextArea
|
showCount
|
maxLength={100}
|
style={{ width: 730 }}
|
/>
|
</Form.Item>
|
)}
|
|
{applyType === "challengeForCause" && (
|
<Form.Item
|
labelCol={{ span: 3 }}
|
label="回避内容"
|
name="avoidContent"
|
>
|
<Input.TextArea
|
showCount
|
maxLength={100}
|
style={{ width: 730 }}
|
/>
|
</Form.Item>
|
)}
|
|
{applyType === "changeRequest" && (
|
<Form.Item labelCol={{ span: 3 }} label="调动原因" name="reason">
|
<Input.TextArea
|
showCount
|
maxLength={100}
|
style={{ width: 730 }}
|
/>
|
</Form.Item>
|
)}
|
|
{applyType === "nominationForAppointment" && (
|
<Form.Item
|
labelCol={{ span: 3 }}
|
label="详细信息"
|
name="detailInfo"
|
>
|
<Input.TextArea
|
showCount
|
maxLength={100}
|
style={{ width: 730 }}
|
/>
|
</Form.Item>
|
)}
|
|
{applyType === "nominationForAppointment" && (
|
<Form.Item labelCol={{ span: 3 }} label="考核信息" name="testInfo">
|
<Input.TextArea
|
showCount
|
maxLength={100}
|
style={{ width: 730 }}
|
/>
|
</Form.Item>
|
)}
|
|
{applyType === "dismissalApplication" && (
|
<Form.Item label="免职原由" labelCol={{ span: 3 }} name="reason">
|
<Input.TextArea
|
showCount
|
maxLength={100}
|
style={{ width: 730 }}
|
/>
|
</Form.Item>
|
)}
|
|
{applyType === "nominationForAppointment" && (
|
<Form.Item labelCol={{ span: 3 }} label="任职原由" name="reason">
|
<Input.TextArea
|
showCount
|
maxLength={100}
|
style={{ width: 730 }}
|
/>
|
</Form.Item>
|
)}
|
|
<Form.Item label={null} style={{ marginBottom: 5 }}>
|
<div className="functionBtn">
|
<Button type="primary" htmlType="submit">
|
提交
|
</Button>
|
<Button onClick={onCancel}>关闭</Button>
|
</div>
|
</Form.Item>
|
</Form.Item>
|
</Form>
|
</Modal>
|
);
|
};
|
|
export default Apply;
|