diff --git a/src/components/exam/ExamDeliveryPanel.tsx b/src/components/exam/ExamDeliveryPanel.tsx
new file mode 100644
index 0000000..133e4e7
--- /dev/null
+++ b/src/components/exam/ExamDeliveryPanel.tsx
@@ -0,0 +1,39 @@
+import type { ExamClient } from '../../data/mockData';
+import { Button, Input } from '../ui';
+
+export const ExamDeliveryPanel = ({ client }: { client: ExamClient }) => (
+
+
+
报告寄送
+
+
+
+
+ 当前客户:{client.name}(体检号:{client.id})
+
+
+
+
+
+);
+
+
diff --git a/src/components/exam/ExamModal.tsx b/src/components/exam/ExamModal.tsx
index ba70ed6..a8f0a6c 100644
--- a/src/components/exam/ExamModal.tsx
+++ b/src/components/exam/ExamModal.tsx
@@ -3,10 +3,11 @@ import { useEffect, useRef, useState } from 'react';
import type { ExamClient, ExamModalTab } from '../../data/mockData';
import type { CustomerAppointmentInfo, CustomerExamAddItem, CustomerInfo, OutputTongyishuFileInfo, PhysicalExamProgressItem } from '../../api';
import { getCustomerDetail, getPhysicalExamProgressDetail, getTongyishuPdf, signInMedicalExamCenter, submitTongyishuSign } from '../../api';
-import { Button, Input, SignaturePad, type SignaturePadHandle } from '../ui';
+import { Button, SignaturePad, type SignaturePadHandle } from '../ui';
import { ExamDetailPanel } from './ExamDetailPanel';
import { ExamAddonPanel } from './ExamAddonPanel';
import { ExamPrintPanel } from './ExamPrintPanel';
+import { ExamDeliveryPanel } from './ExamDeliveryPanel';
interface ExamModalProps {
client: ExamClient;
@@ -165,7 +166,7 @@ export const ExamModal = ({ client, tab, onTabChange, onClose }: ExamModalProps)
{tab === 'sign' && }
{tab === 'addon' && }
{tab === 'print' && }
- {/* {tab === 'delivery' && } */}
+ {tab === 'delivery' && }