feature: Improve dashboard functionality

This commit is contained in:
voltsrage
2026-06-23 20:19:32 +08:00
parent dd0fd88731
commit 79b6d9d85e
60 changed files with 2857 additions and 164 deletions
+10
View File
@@ -0,0 +1,10 @@
import { api } from './client'
export function fetchSepsisBundles({ status = 'IN_PROGRESS', page = 1, pageSize = 100 } = {}) {
const params = new URLSearchParams({
page: String(page),
pageSize: String(pageSize),
})
if (status) params.set('status', status)
return api.get(`/api/v1/sepsis-bundles?${params}`)
}