From 9f471db313ebac7caba06e914114c914fc0b1215 Mon Sep 17 00:00:00 2001 From: xianyi Date: Mon, 22 Dec 2025 10:30:11 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E5=AE=A2=E6=88=B7=E5=88=97?= =?UTF-8?q?=E8=A1=A8=E6=95=B0=E6=8D=AE=EF=BC=8C=E4=B8=8A=E5=8D=88=E4=B8=8B?= =?UTF-8?q?=E5=8D=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/data/mockData.ts | 1 - src/pages/ExamPage.tsx | 5 ----- 2 files changed, 6 deletions(-) diff --git a/src/data/mockData.ts b/src/data/mockData.ts index eebb706..c6edbbc 100644 --- a/src/data/mockData.ts +++ b/src/data/mockData.ts @@ -9,7 +9,6 @@ export interface ExamClient { elapsed: string; checkedItems: string[]; pendingItems: string[]; - timeSlot: '上午' | '下午'; channel: string; vipType: '高客' | '普客'; signStatus: '已登记' | '未登记'; diff --git a/src/pages/ExamPage.tsx b/src/pages/ExamPage.tsx index 815fee3..6ab37f5 100644 --- a/src/pages/ExamPage.tsx +++ b/src/pages/ExamPage.tsx @@ -133,10 +133,6 @@ export const ExamPage = () => { } } - // 粗略判断上午/下午 - const timeSlot: ExamClient['timeSlot'] = - (item.physical_exam_time || '').includes('下午') ? '下午' : '上午'; - return { id: String(item.physical_exam_id ?? ''), name: item.customer_name || '未知客户', @@ -148,7 +144,6 @@ export const ExamPage = () => { elapsed, checkedItems: [], pendingItems: [], - timeSlot, channel: item.channel || '', vipType, signStatus,