import React, { useRef } from 'react'; /** * 文件上传模态框组件 */ const FileUploadModal = ({ show, newFile, fileErrors, isSubmitting, onClose, onDescriptionChange, onFileChange, onFileDrop, onDragOver, onUploadAreaClick, onUpload, }) => { const fileInputRef = useRef(null); if (!show) return null; return (
已选择文件:
{newFile.file.name}
点击或拖拽文件到此处上传
支持 PDF, DOCX, TXT, CSV 等格式