From fe28e1fe081c83b703d5c10b3ebe017a69da9b3d Mon Sep 17 00:00:00 2001
From: eight <641137800@qq.com>
Date: 星期五, 11 四月 2025 16:52:29 +0800
Subject: [PATCH] 大屏 增加 运行 指示圆点
---
src/views/ecg/queue/index.vue | 8 +++++++-
1 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/src/views/ecg/queue/index.vue b/src/views/ecg/queue/index.vue
index 5208bc0..e8c0f84 100644
--- a/src/views/ecg/queue/index.vue
+++ b/src/views/ecg/queue/index.vue
@@ -191,7 +191,7 @@
</el-table-column>
<el-table-column label="妫�鏌ョ被鍨�" align="center" prop="bookCheckType" min-width="100px">
<template #default="scope">
- {{checkTypeStore.getCheckTypeName(scope.row.bookCheckType)}}
+ {{getCheckTypeName(scope.row.bookCheckType)}}
</template>
</el-table-column>
<el-table-column label="鎮h�呰鎯�" align="center" prop="patDetails" min-width="300px">
@@ -250,6 +250,7 @@
import {useCheckTypeStore} from "@/store/modules/checkType";
import AppointmentForm from "@/views/ecg/appointment/AppointmentForm.vue";
import {genderFormat} from "@/utils/stringUtil";
+import {getCheckTypeName} from "../../../utils/checkTypeFormatter";
/** 鎺掗槦 鍒楄〃 */
defineOptions({ name: 'queue' })
@@ -397,4 +398,9 @@
onMounted(() => {
getList()
})
+
+onActivated(() => {
+ console.info("queue onActivated...")
+ handleQuery()
+})
</script>
--
Gitblit v1.9.3