From 348e6bcdc7fa566a48b96dea53d24ec6dda49e1d Mon Sep 17 00:00:00 2001 From: eight <641137800@qq.com> Date: 星期五, 11 四月 2025 18:06:40 +0800 Subject: [PATCH] update --- src/views/ecg/callingscreen/roomscreen.vue | 172 ++++++++++++++++++++++++++++++++++++++------------------- 1 files changed, 114 insertions(+), 58 deletions(-) diff --git a/src/views/ecg/callingscreen/roomscreen.vue b/src/views/ecg/callingscreen/roomscreen.vue index bcca1bb..8437e08 100644 --- a/src/views/ecg/callingscreen/roomscreen.vue +++ b/src/views/ecg/callingscreen/roomscreen.vue @@ -1,36 +1,31 @@ <script setup lang="ts"> -import {RoomBedVO} from "@/api/ecg/doctor"; +import {RoomProfileVO} from "@/api/ecg/doctor"; import {RoomApi} from "@/api/ecg/room"; import {ScreenQueueVO, ScreenApi} from "@/api/ecg/screen"; import {CallApi, CallVO} from "@/api/ecg/call"; import {queueStatusConvert} from "../../../utils/statusFormatter"; -import {useCheckTypeStore} from "@/store/modules/checkType"; +import {getCheckTypeName, getCheckTypeSeqPrefix} from "../../../utils/checkTypeFormatter"; defineOptions({ name: 'roomscreen' }) +let roomId = ref<number>(0) -const checkTypeStore = useCheckTypeStore() - -const list = ref<ScreenQueueVO[]>([]) // 鍒楄〃鐨勬暟鎹� -//const listPassed = ref<ScreenQueueVO[]>([]) // 杩囧彿鍒楄〃鐨勬暟鎹� +const checkRelatedPatientList = ref<ScreenQueueVO[]>([]) +const installRelatedPatientList = ref<ScreenQueueVO[]>([]) let curSpeakPat : CallVO | null = null; -const roomBed = ref<RoomBedVO>({ - roomId : null, - roomName: null, - bedNo: null -}) +const roomProfile = ref<RoomProfileVO>() const getList = async () => { - const data = await ScreenApi.getRoomScreenData() - list.value = data[1] - // listPassed.value = data[2] + const data = await ScreenApi.getRoomScreenData(roomId.value) + checkRelatedPatientList.value = data[1] + installRelatedPatientList.value = data[2] } const getRoomByIp = async () => { - const data = await RoomApi.getRoomByIP() - roomBed.value = data + const data = await RoomApi.getRoomByIP(roomId.value) + roomProfile.value = data } const startScrolling = () => { @@ -77,10 +72,14 @@ } const initiateSpeak = async () => { + //TODO: 娴嬭瘯鐢紝鏆傛椂涓嶆挱闊� + return; + curSpeakPat = await CallApi.getNextInstallCall() - if (curSpeakPat !== null) { - speak("璇枫��" + curSpeakPat.patName + "鍒�" + curSpeakPat.roomName + "瑁呮満"); - } + if (curSpeakPat == null) + return; + + speak("璇枫��" + curSpeakPat.patName + "鍒�" + curSpeakPat.roomName + "瑁呮満"); } const speak = (msg) => { @@ -105,51 +104,97 @@ <template> <el-container style="height: 100%;"> - <el-header style="font-size: 25px">{{ roomBed.roomName }}</el-header> + <el-header style="font-size: 25px"> + {{ roomProfile?.roomName||'-' }} + <el-input-number v-model="roomId" @change="getRoomByIp" /> + </el-header> <el-main> - <el-table - :data="list" - :show-header="false" - style="width: 100%; height: 100%; border: solid var(--el-color-primary-light-7); font-size: 18px;" - :row-class-name="tableRowClassName" - > - <el-table-column - prop="patName" - label="棰勭害搴忓彿" - width="60px"> - <template #default="scope"> - <span style="display:inline-block; width:60px;">{{checkTypeStore.getCheckTypeSeqPrefix(scope.row.bookCheckType)}}{{scope.row.bookSeqNum}} </span> - </template> - </el-table-column> - <el-table-column - prop="patName" - label="鎮h�呭鍚�" - width="80px"> - <template #default="scope"> - <span style="display:inline-block; width:80px;">{{ nameDesensitize(scope.row.patName) }} </span> - </template> - </el-table-column> - <el-table-column - prop="patName" - label="妫�鏌ラ」鐩�" - width="80px"> - <template #default="scope"> - <span style="display:inline-block; width:80px;">{{scope.row.bookCheckType && checkTypeStore.getCheckTypeName(scope.row.bookCheckType)}} </span> - </template> - </el-table-column> - <el-table-column label="鐘舵��" align="center" width="100px"> - <template #default="scope"> -<!-- <dict-tag :type="DICT_TYPE.ECG_QUEUE_STATUS" :value="scope.row.status" />--> - {{queueStatusConvert(scope.row.status)}} - </template> - </el-table-column> - </el-table> + <div class="layout-content"> + <div class="left" v-if="roomProfile?.callingScreenType === 10 || roomProfile?.callingScreenType === 20 || roomProfile?.callingScreenType === 40 || roomProfile?.callingScreenType === 50"> + <el-table + :data="checkRelatedPatientList" + :show-header="false" + style="width: 100%; height: 100%; border: solid var(--el-color-primary-light-7); font-size: 18px;" + :row-class-name="tableRowClassName" + > + <el-table-column + prop="patName" + label="棰勭害搴忓彿" + width="60px"> + <template #default="scope"> + <span style="display:inline-block; width:60px;">{{getCheckTypeSeqPrefix(scope.row.bookCheckType)}}{{scope.row.bookSeqNum}} </span> + </template> + </el-table-column> + <el-table-column + prop="patName" + label="鎮h�呭鍚�" + width="80px"> + <template #default="scope"> + <span style="display:inline-block; width:80px;">{{ nameDesensitize(scope.row.patName) }} </span> + </template> + </el-table-column> + <el-table-column + prop="patName" + label="妫�鏌ラ」鐩�" + width="80px"> + <template #default="scope"> + <span style="display:inline-block; width:80px;">{{scope.row.bookCheckType && getCheckTypeName(scope.row.bookCheckType)}} </span> + </template> + </el-table-column> + <el-table-column label="鐘舵��" align="center" width="200px"> + <template #default="scope"> + <!-- <dict-tag :type="DICT_TYPE.ECG_QUEUE_STATUS" :value="scope.row.status" />--> + {{queueStatusConvert(scope.row.status)}} {{scope.row.bedNo}} + </template> + </el-table-column> + </el-table> + </div> + <div class="right" v-if="roomProfile?.callingScreenType === 30 || roomProfile?.callingScreenType === 40 || roomProfile?.callingScreenType === 50"> + <el-table + :data="installRelatedPatientList" + :show-header="false" + style="width: 100%; height: 100%; border: solid var(--el-color-primary-light-7); font-size: 18px;" + :row-class-name="tableRowClassName" + > + <el-table-column + prop="patName" + label="棰勭害搴忓彿" + width="60px"> + <template #default="scope"> + <span style="display:inline-block; width:60px;">{{getCheckTypeSeqPrefix(scope.row.bookCheckType)}}{{scope.row.bookSeqNum}} </span> + </template> + </el-table-column> + <el-table-column + prop="patName" + label="鎮h�呭鍚�" + width="80px"> + <template #default="scope"> + <span style="display:inline-block; width:80px;">{{ nameDesensitize(scope.row.patName) }} </span> + </template> + </el-table-column> + <el-table-column + prop="patName" + label="妫�鏌ラ」鐩�" + width="80px"> + <template #default="scope"> + <span style="display:inline-block; width:80px;">{{scope.row.bookCheckType && getCheckTypeName(scope.row.bookCheckType)}} </span> + </template> + </el-table-column> + <el-table-column label="鐘舵��" align="center" width="200px"> + <template #default="scope"> + <!-- <dict-tag :type="DICT_TYPE.ECG_QUEUE_STATUS" :value="scope.row.status" />--> + {{queueStatusConvert(scope.row.status)}} {{scope.row.bedNo}} + </template> + </el-table-column> + </el-table> + </div> + </div> </el-main> <el-button @click="speak('娆㈣繋浣跨敤')" >娆㈣繋浣跨敤</el-button> <!-- <el-footer height="100px" style="padding: 0 0"> <el-header height="30px" style="background-color: #98b8e5; line-height: 30px;">杩囧彿鍖�</el-header> - <span v-for="(passedItem, index) in listPassed" :key="index"> + <span v-for="(passedItem, index) in installRelatedPatientList" :key="index"> {{nameDesensitize(passedItem.patName) + " "}} </span> </el-footer> @@ -187,4 +232,15 @@ --el-table-tr-bg-color: var(--el-color-success-light-9); } +.layout-content { + display: flex; + height: 100%; +} + +.left, .right { + flex: 1; + border: 1px solid #ccc; + padding: 10px; +} + </style> -- Gitblit v1.9.3