| | |
| | | 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"; |
| | | |
| | | defineOptions({ name: 'roomscreen' }) |
| | | |
| | | const checkTypeStore = useCheckTypeStore() |
| | | |
| | | const list = ref<ScreenQueueVO[]>([]) // 列表的数据 |
| | | //const listPassed = ref<ScreenQueueVO[]>([]) // 过号列表的数据 |
| | |
| | | <el-table-column |
| | | prop="patName" |
| | | label="患者姓名" |
| | | width="80"> |
| | | width="220"> |
| | | <template #default="scope"> |
| | | {{scope.row.bookSeqNum}} {{ nameDesensitize(scope.row.patName) }} |
| | | {{scope.row.bookCheckType && checkTypeStore.getCheckTypeName(scope.row.bookCheckType)}} |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="状态" align="center" width="130"> |
| | | <el-table-column label="状态" align="center" width="100"> |
| | | <template #default="scope"> |
| | | <!-- <dict-tag :type="DICT_TYPE.ECG_QUEUE_STATUS" :value="scope.row.status" />--> |
| | | {{queueStatusConvert(scope.row.status)}} |