From 1d6b9a06bcc84c1cc816035a6c908a4126161a60 Mon Sep 17 00:00:00 2001
From: eight <641137800@qq.com>
Date: 星期三, 09 十月 2024 11:27:11 +0800
Subject: [PATCH] 工位支持多种检查类型
---
src/views/ecg/callingscreen/bigscreen.vue | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/views/ecg/callingscreen/bigscreen.vue b/src/views/ecg/callingscreen/bigscreen.vue
index 1e618a5..387f7b1 100644
--- a/src/views/ecg/callingscreen/bigscreen.vue
+++ b/src/views/ecg/callingscreen/bigscreen.vue
@@ -1,14 +1,14 @@
<script setup lang="ts">
-import {ScreenApi, CallingVO} from "@/api/ecg/screen";
+import {ScreenApi, ScreenQueueVO} from "@/api/ecg/screen";
import {CallApi, CallVO} from "@/api/ecg/call";
import {DICT_TYPE} from "@/utils/dict";
defineOptions({ name: 'bigscreen' })
-const listReady = ref<CallingVO[]>([]) // 鍒楄〃鐨勬暟鎹�
-const listWaiting = ref<CallingVO[]>([]) // 鍒楄〃鐨勬暟鎹�
-const listPassed = ref<CallingVO[]>([]) //
+const listReady = ref<ScreenQueueVO[]>([]) // 鍒楄〃鐨勬暟鎹�
+const listWaiting = ref<ScreenQueueVO[]>([]) // 鍒楄〃鐨勬暟鎹�
+const listPassed = ref<ScreenQueueVO[]>([]) //
let curSpeakPat : CallVO | null = null;
@@ -98,7 +98,7 @@
label="鎮h�呭鍚�"
width="80">
<template #default="scope">
- {{ nameDesensitize(scope.row.patName) }}
+ {{scope.row.seqNum}} {{ nameDesensitize(scope.row.patName) }}
</template>
</el-table-column>
<el-table-column label="鐘舵��" align="center" prop="status" width="80">
--
Gitblit v1.9.3