/* 境内企业/机构 表单项 */ import React from 'react'; import { Form, Input, Button, Select, Upload, DatePicker, Row, Col, message } from 'antd'; import { MobileOutlined, MailOutlined, EnvironmentOutlined, UploadOutlined, } from '@ant-design/icons'; /** * 引入通用表单组件 */ import { QualificationSection, InvoiceSection, BankAccountSection, SurveySection, AttachmentSection, } from './CommonFormSections'; import { validateFileSize } from '@/utils/utils'; const { Option } = Select; const { TextArea } = Input; // 移除不再需要的addressOptions interface DomesticFormProps { form: any; countdown: number; handleGetCaptcha: () => void; surveyQuestions?: API.SurveyQuestionResponse; // 本身就是数组类型 } /** * 境内企业注册表单 * 基本信息部分为境内企业特有 * 其他部分使用通用表单组件 */ const DomesticForm: React.FC = ({ form, countdown, handleGetCaptcha, surveyQuestions, }) => { return ( <>
基本信息
{/* 营业执照附件和有效期 */} validateFileSize(file, 10, ['pdf', 'jpg', 'jpeg', 'png'])} > } placeholder="上海市普陀区XX路1888号" /> } placeholder="请具体注明省、市、区、路、门牌号" />