| | |
| | | import {useCheckTypeStore} from "@/store/modules/checkType"; |
| | | |
| | | 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 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() |
| | | const data = await RoomApi.getRoomByIP(roomId.value) |
| | | roomProfile.value = data |
| | | } |
| | | |
| | |
| | | |
| | | <template> |
| | | <el-container style="height: 100%;"> |
| | | <el-header style="font-size: 25px">{{ roomProfile.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="患者姓名" |
| | | 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"> |
| | | <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;">{{checkTypeStore.getCheckTypeSeqPrefix(scope.row.bookCheckType)}}{{scope.row.bookSeqNum}} </span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column |
| | | prop="patName" |
| | | label="患者姓名" |
| | | 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="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"> |
| | | <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;">{{checkTypeStore.getCheckTypeSeqPrefix(scope.row.bookCheckType)}}{{scope.row.bookSeqNum}} </span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column |
| | | prop="patName" |
| | | label="患者姓名" |
| | | 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="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> |
| | |
| | | --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> |