更新显示字段
This commit is contained in:
@@ -243,7 +243,7 @@ export const ExamSection = ({
|
|||||||
<div className='text-xs text-gray-500 truncate'>套餐:{client.packageName}</div>
|
<div className='text-xs text-gray-500 truncate'>套餐:{client.packageName}</div>
|
||||||
<div className='text-xs text-gray-500 truncate'>渠道:{client.channel ?? ''}</div>
|
<div className='text-xs text-gray-500 truncate'>渠道:{client.channel ?? ''}</div>
|
||||||
<div className='flex items-center justify-between text-xs text-gray-500 mt-1'>
|
<div className='flex items-center justify-between text-xs text-gray-500 mt-1'>
|
||||||
<span>状态:{client.status}</span>
|
<span>状态:{(client as any).physical_exam_status_name ?? '未知状态'}</span>
|
||||||
<span>已耗时:{client.elapsed}</span>
|
<span>已耗时:{client.elapsed}</span>
|
||||||
</div>
|
</div>
|
||||||
<div className='mt-2 flex flex-wrap gap-1 text-[11px]'>
|
<div className='mt-2 flex flex-wrap gap-1 text-[11px]'>
|
||||||
|
|||||||
@@ -111,6 +111,7 @@ export const ExamPage = () => {
|
|||||||
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,
|
appointmentRemarks: item.appointment_remarks || null,
|
||||||
|
physical_exam_status_name: item.physical_exam_status_name || null,
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
setClients(mapped);
|
setClients(mapped);
|
||||||
|
|||||||
Reference in New Issue
Block a user