From 0e49b9a952f606574883fe67e8f1c52e4f2ab95b Mon Sep 17 00:00:00 2001 From: MingNian <1281442923@qq.com> Date: Wed, 3 Jun 2026 14:33:25 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BE=A7=E8=BE=B9=E6=A0=8F=E6=96=B0?= =?UTF-8?q?=E5=A2=9E=E5=8A=9F=E8=83=BD=E5=85=A5=E5=8F=A3=EF=BC=88=E6=8A=A5?= =?UTF-8?q?=E5=91=8A/=E6=97=A5=E5=8E=86/=E9=A5=AE=E9=A3=9F/=E5=A4=8D?= =?UTF-8?q?=E6=9F=A5=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 健康概览和历史对话之间增加: - 报告管理 → reports 路由 - 健康日历 → calendar 路由 - 饮食记录 → dietRecords 路由 - 复查随访 → followups 路由 --- health_app/lib/widgets/health_drawer.dart | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/health_app/lib/widgets/health_drawer.dart b/health_app/lib/widgets/health_drawer.dart index 755f97d..9dadbe0 100644 --- a/health_app/lib/widgets/health_drawer.dart +++ b/health_app/lib/widgets/health_drawer.dart @@ -66,6 +66,15 @@ class HealthDrawer extends ConsumerWidget { ]), ), + const Divider(), + Padding( + padding: const EdgeInsets.symmetric(horizontal: 20, vertical: 8), + child: Text('功能', style: Theme.of(context).textTheme.labelMedium!.copyWith(fontWeight: FontWeight.w600)), + ), + _DrawerItem(icon: Icons.description, label: '报告管理', onTap: () => pushRoute(ref, 'reports')), + _DrawerItem(icon: Icons.calendar_today, label: '健康日历', onTap: () => pushRoute(ref, 'calendar')), + _DrawerItem(icon: Icons.restaurant, label: '饮食记录', onTap: () => pushRoute(ref, 'dietRecords')), + _DrawerItem(icon: Icons.event_note, label: '复查随访', onTap: () => pushRoute(ref, 'followups')), const Divider(), Padding( padding: const EdgeInsets.symmetric(horizontal: 20, vertical: 8),