@@ -82,9 +82,9 @@ function VitalSignsPanel({ data }: { data: HealthDataStats | null }) {
return (
体征上报率} style={{ borderRadius: 8 }}>
-
-
-
+
+
+
{(data?.vital_signs_report_rate.daily_trend ?? []).length > 0 && (
diff --git a/apps/web/src/pages/health/StatisticsDashboard/NurseDashboard.tsx b/apps/web/src/pages/health/StatisticsDashboard/NurseDashboard.tsx
index 3ed01fe..c0b9cb4 100644
--- a/apps/web/src/pages/health/StatisticsDashboard/NurseDashboard.tsx
+++ b/apps/web/src/pages/health/StatisticsDashboard/NurseDashboard.tsx
@@ -137,7 +137,7 @@ export function NurseDashboard() {
}
- valueStyle={{ color: (p?.overdue_follow_ups ?? 0) > 0 ? '#cf1322' : undefined }}
+ styles={{ content: { color: (p?.overdue_follow_ups ?? 0) > 0 ? '#cf1322' : undefined } }}
/>
diff --git a/crates/erp-health/src/service/action_inbox_service.rs b/crates/erp-health/src/service/action_inbox_service.rs
index dfdb46d..8ae0e6a 100644
--- a/crates/erp-health/src/service/action_inbox_service.rs
+++ b/crates/erp-health/src/service/action_inbox_service.rs
@@ -423,6 +423,8 @@ pub async fn list_action_items(
tenant_id.into(),
patient_val,
assigned_val,
+ (page_size as i64).into(),
+ (offset as i64).into(),
sug_val,
alert_val,
fu_val,
diff --git a/crates/erp-server/migration/src/lib.rs b/crates/erp-server/migration/src/lib.rs
index 01c4e65..1069b21 100644
--- a/crates/erp-server/migration/src/lib.rs
+++ b/crates/erp-server/migration/src/lib.rs
@@ -165,6 +165,7 @@ mod m20260521_000160_follow_up_task_template_id_and_record_form_data;
mod m20260521_000161_consultation_media_id_and_suggestion_references;
mod m20260521_000162_consultation_session_rating_feedback;
mod m20260521_000163_reorganize_menus_by_business_flow;
+mod m20260521_000164_reorganize_menus_scheme_b;
pub struct Migrator;
@@ -337,6 +338,7 @@ impl MigratorTrait for Migrator {
Box::new(m20260521_000161_consultation_media_id_and_suggestion_references::Migration),
Box::new(m20260521_000162_consultation_session_rating_feedback::Migration),
Box::new(m20260521_000163_reorganize_menus_by_business_flow::Migration),
+ Box::new(m20260521_000164_reorganize_menus_scheme_b::Migration),
]
}
}