fix(Upload/MessageEnter): 移除调试日志并完善文件类型判断逻辑

移除SimpleFileUpload组件中上传成功后的console.log
在MessageEnter组件中添加文件类型判断功能,根据文件扩展名确定消息类型并发送相应消息
This commit is contained in:
超级老白兔
2025-09-09 16:40:20 +08:00
parent 6782f188f5
commit d0953585a7
2 changed files with 51 additions and 3 deletions

View File

@@ -50,7 +50,6 @@ const SimpleFileUpload: React.FC<SimpleFileUploadProps> = ({
try {
const fileUrl = await uploadFile(file);
console.log("上传成功文件URL:", fileUrl);
onFileUploaded?.(fileUrl);
message.success("文件上传成功");
} catch (error: any) {