eight
2024-09-20 6ff1d0903a7adda6d4a97c189d38b20a2ac777f9
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;