| | |
| | | <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"> |