优化与接口调试

This commit is contained in:
孙景学
2025-07-22 13:17:34 +08:00
parent c586e121fe
commit f229b9a19b
22 changed files with 249 additions and 181 deletions

View File

@ -1,6 +1,6 @@
/* 境外企业 表单项 */
import React, { useEffect, useState } from 'react';
import { Form, Input, Select, Row, Col, message, Upload, Button } from 'antd';
import { Form, Input, Select, Row, Col, message, Upload, Button, DatePicker } from 'antd';
import type { UploadProps } from 'antd';
import { UploadOutlined } from '@ant-design/icons';
import { uploadFile } from '../services';
@ -127,7 +127,7 @@ const DomesticForm: React.FC<ForeignFormProps> = ({ form, countdown, handleGetCa
label="营业执照有效期"
rules={[{ required: true, message: '请输入营业执照有效期' }]}
>
<Input placeholder="请输入营业执照有效期" />
<DatePicker style={{ width: '100%' }} />
</Form.Item>
</Col>