| | |
| | | import {ScreenApi, ScreenQueueVO} from "@/api/ecg/screen"; |
| | | import {CallApi, CallVO} from "@/api/ecg/call"; |
| | | import {DICT_TYPE} from "@/utils/dict"; |
| | | import {queueStatusConvert} from "@/utils/statusFormatter"; |
| | | |
| | | defineOptions({ name: 'bigscreen' }) |
| | | |
| | |
| | | {{scope.row.seqNum}} {{ nameDesensitize(scope.row.patName) }} |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="状态" align="center" prop="status" width="80"> |
| | | <el-table-column label="状态" align="center" prop="status" width="100"> |
| | | <template #default="scope"> |
| | | <dict-tag :type="DICT_TYPE.ECG_QUEUE_STATUS" :value="scope.row.status" /> |
| | | <!-- <dict-tag :type="DICT_TYPE.ECG_QUEUE_STATUS" :value="scope.row.status" />--> |
| | | {{queueStatusConvert(scope.row.status)}} |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column |