eight
2024-12-03 a0d89e1a39de18baccd2cee18b5785ce476363ed
小屏显示格式
已修改1个文件
8 ■■■■ 文件已修改
src/views/ecg/callingscreen/roomscreen.vue 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/ecg/callingscreen/roomscreen.vue
@@ -5,8 +5,11 @@
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[]>([]) // 过号列表的数据
@@ -113,12 +116,13 @@
        <el-table-column
            prop="patName"
            label="患者姓名"
            width="80">
            width="220">
          <template #default="scope">
            {{scope.row.bookSeqNum}} &nbsp; {{ 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)}}