完善预约备注
This commit is contained in:
@@ -335,6 +335,9 @@ export const ExamDetailPanel = ({
|
|||||||
<div className='col-span-2'>
|
<div className='col-span-2'>
|
||||||
体检套餐名称:<span className='text-gray-900'>{client.packageName}</span>
|
体检套餐名称:<span className='text-gray-900'>{client.packageName}</span>
|
||||||
</div>
|
</div>
|
||||||
|
<div className='col-span-2'>
|
||||||
|
预约备注:<span className='text-gray-900'>{loading ? '' : ((client['appointmentRemarks' as keyof ExamClient] as string | null | undefined) || '—')}</span>
|
||||||
|
</div>
|
||||||
<div className='col-span-2'>
|
<div className='col-span-2'>
|
||||||
加项内容:<span className='text-gray-900'>{addonSummary as string}</span>
|
加项内容:<span className='text-gray-900'>{addonSummary as string}</span>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -109,6 +109,7 @@ export const ExamPage = () => {
|
|||||||
familyDoctorName: item.family_doctor_name || '',
|
familyDoctorName: item.family_doctor_name || '',
|
||||||
guidePrinted: item.is_print === 1,
|
guidePrinted: item.is_print === 1,
|
||||||
addonCount: item.add_item_count ?? 0,
|
addonCount: item.add_item_count ?? 0,
|
||||||
|
appointmentRemarks: item.appointment_remarks || null,
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
setClients(mapped);
|
setClients(mapped);
|
||||||
|
|||||||
Reference in New Issue
Block a user