From aec2c46121c57348808f4ffa90d6e344216eb913 Mon Sep 17 00:00:00 2001
From: jingna <1264204245@qq.com>
Date: Wed, 6 Aug 2025 16:23:39 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
frontend/src/renderer/src/views/Dashboard.vue | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/frontend/src/renderer/src/views/Dashboard.vue b/frontend/src/renderer/src/views/Dashboard.vue
index c08ab4f9..e33f2e9e 100644
--- a/frontend/src/renderer/src/views/Dashboard.vue
+++ b/frontend/src/renderer/src/views/Dashboard.vue
@@ -39,6 +39,13 @@
+
+
+ 未处理
+ 已处理
+
+
+
删除
@@ -347,6 +354,7 @@ const filteredPatients = computed(() => {
if (!searchKeyword.value) {
return patients.value
}
+
return patients.value.filter(patient =>
patient.name.toLowerCase().includes(searchKeyword.value.toLowerCase())
)