| | |
| | | <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; |
| | | |
| | |
| | | label="患者姓名" |
| | | 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"> |
| | |
| | | <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"> |
| | | {{nameDesensitize(passedItem.patName) + " "}} |
| | | {{nameDesensitize(passedItem.patName) + " " + passedItem.roomName + " "}} |
| | | </span> |
| | | </el-footer> |
| | | </el-container> |