| | |
| | | <template> |
| | | <el-form |
| | | ref="formRef" |
| | | :model="formData" |
| | | :rules="formRules" |
| | | label-width="100px" |
| | | v-loading="formLoading" |
| | | > |
| | | <el-row :gutter="20"> |
| | | <el-col :span="12"> |
| | | <el-form-item label="患者编号" prop="patId"> |
| | | <el-input v-model="formData.patId" placeholder="请输入患者编号" @input="getRentInfoByPatId" /> |
| | | </el-form-item> |
| | | <el-form-item label="患者名称" prop="patName"> |
| | | <el-input v-model="formData.patName" placeholder="请输入患者名称" /> |
| | | </el-form-item> |
| | | <el-form-item label="患者描述" prop="patDeptDesc"> |
| | | 科室: {{formData.patDeptDesc}} 病区: {{formData.patWardDesc}} 床位: {{formData.patBedNo}} |
| | | </el-form-item> |
| | | <el-form-item label="装机时间" prop="rentTime"> |
| | | <el-date-picker |
| | | v-model="formData.rentTime" |
| | | type="date" |
| | | value-format="x" |
| | | placeholder="选择装机时间" |
| | | /> |
| | | </el-form-item> |
| | | </el-col> |
| | | <el-col :span="12"> |
| | | <el-form-item label="设备编号" prop="devId"> |
| | | <el-input v-model="formData.devId" placeholder="请输入设备编号" @input="getDevInfo"/> |
| | | </el-form-item> |
| | | <el-form-item label="设备描述" prop=""> |
| | | <span v-if="formData.brand !== null"> {{formData.brand}} </span> |
| | | {{" "}} |
| | | <span v-if="formData.model !== null"> {{formData.model}} </span> |
| | | </el-form-item> |
| | | <el-form-item label="备注" prop="remark"> |
| | | <el-input v-model="formData.remark" placeholder="请输入备注" /> |
| | | </el-form-item> |
| | | </el-col> |
| | | </el-row> |
| | | </el-form> |
| | | <el-button @click="submitForm" type="primary" :disabled="formLoading">装机完成</el-button> |
| | | <el-button @click="resetForm()">重 置</el-button> |
| | | <el-button @click="cancelInstall" :disabled="formLoading">放弃装机</el-button> |
| | | |
| | | <!-- 医生装机列表 --> |
| | | <ContentWrap> |
| | | <el-table v-loading="loading" :data="list" :stripe="true" :show-overflow-tooltip="true" @row-click="onRowClick" > |
| | | <el-table-column label="id" align="center" prop="id" /> |
| | | <el-table-column label="装机情况" align="center" prop="lost" > |
| | | <template #default="scope"> |
| | | <span v-if="scope.row.jobType === 10">"已装机"</span> |
| | | <span v-if="scope.row.jobType === 35">"已放弃"</span> |
| | | </template> |
| | | </el-table-column> |
| | | <!-- <el-table-column label="作业类型" align="center" prop="jobType" />--> |
| | | <!-- <el-table-column label="医生编号" align="center" prop="docId" />--> |
| | | <el-table-column label="医生名称" align="center" prop="docName" /> |
| | | <el-table-column label="设备编号" align="center" prop="devId" /> |
| | | <el-table-column label="患者编号" align="center" prop="patId" /> |
| | | <el-table-column label="患者名称" align="center" prop="patName" /> |
| | | <el-table-column |
| | | label="作业时间" |
| | | align="center" |
| | | prop="jobTime" |
| | | :formatter="dateFormatter" |
| | | width="180px" |
| | | /> |
| | | <el-table-column label="作业概要" align="center" prop="summary" /> |
| | | <el-table-column label="备注" align="center" prop="remark" /> |
| | | <el-table-column |
| | | label="创建时间" |
| | | align="center" |
| | | prop="createTime" |
| | | :formatter="dateFormatter" |
| | | width="180px" |
| | | /> |
| | | <el-table-column label="操作" align="center" min-width="120px"> |
| | | <template #default="scope"> |
| | | <el-button |
| | | link |
| | | type="primary" |
| | | @click="openForm('update', scope.row.id)" |
| | | v-hasPermi="['ecg:job-record:update']" |
| | | > |
| | | 编辑 |
| | | </el-button> |
| | | <el-button |
| | | link |
| | | type="danger" |
| | | @click="handleDelete(scope.row.id)" |
| | | v-hasPermi="['ecg:job-record:delete']" |
| | | > |
| | | 删除 |
| | | </el-button> |
| | | </template> |
| | | </el-table-column> |
| | | </el-table> |
| | | <!-- 分页 --> |
| | | <Pagination |
| | | :total="total" |
| | | v-model:page="queryParams.pageNo" |
| | | v-model:limit="queryParams.pageSize" |
| | | @pagination="getList" |
| | | /> |
| | | </ContentWrap> |
| | | |
| | | </template> |
| | | |
| | | <script setup lang="ts"> |
| | | import { DevRentApi, DevRentVO } from '@/api/ecg/devrent' |
| | | import {dateFormatter} from "@/utils/formatTime"; |
| | | import {JobRecordApi, JobRecordVO} from "@/api/ecg/jobrecord"; |
| | | import {isStringEmpty} from "@/utils/stringUtil"; |
| | | import {curDayEnd, curDayStart} from "@/utils/dateUtil"; |
| | | import {DeviceApi} from "@/api/ecg/devmanage"; |
| | | import TitleInstallPanel from "@/views/ecg/doctor/components/TitleInstallPanel.vue"; |
| | | import DevInstallPanel from "@/views/ecg/doctor/components/DevInstallPanel.vue"; |
| | | import QueuePanel from "@/views/ecg/doctor/components/QueuePanel.vue"; |
| | | import {DoctorApi, PatientStatisticVO, RoomBedVO} from '@/api/ecg/doctor'; |
| | | import {useUserStore} from "@/store/modules/user"; |
| | | import {QueueVO} from "@/api/ecg/queue"; |
| | | import {ElNotification} from "element-plus"; |
| | | |
| | | /** 装机 表单 */ |
| | | defineOptions({ name: 'DevrInstall' }) |
| | | const userStore = useUserStore(); |
| | | |
| | | const emit = defineEmits(['success-install']) // 定义 success 事件,用于操作成功后的回调 |
| | | |
| | | const { t } = useI18n() // 国际化 |
| | | const message = useMessage() // 消息弹窗 |
| | | |
| | | const dialogVisible = ref(false) // 弹窗的是否展示 |
| | | |
| | | const formLoading = ref(false) // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用 |
| | | |
| | | const formData = ref({}) |
| | | |
| | | const formRules = reactive({ |
| | | // devId: [{ required: true, message: '设备编号不能为空', trigger: 'blur' }], |
| | | rentTime: [{ required: true, message: '请选择装机日期', trigger: 'blur' }], |
| | | const roomBedVO = ref<RoomBedVO>({ |
| | | roomId: null, |
| | | roomName: null, |
| | | bedNo: null |
| | | }) |
| | | const formRef = ref() // 表单 Ref |
| | | |
| | | /** 提交表单 */ |
| | | const submitForm = async () => { |
| | | // 校验表单 |
| | | await formRef.value.validate() |
| | | // 提交请求 |
| | | formLoading.value = true |
| | | try { |
| | | const data = formData.value as unknown as DevRentVO |
| | | //await DevRentApi.updateDevRent(data) |
| | | await DevRentApi.devInstall(data) |
| | | message.success(t('操作成功')) |
| | | dialogVisible.value = false |
| | | // 发送操作成功的事件 |
| | | emit('success-install') |
| | | resetForm() |
| | | getList() |
| | | } finally { |
| | | formLoading.value = false |
| | | } |
| | | } |
| | | |
| | | /** 重置表单 */ |
| | | const resetForm = () => { |
| | | formData.value = { |
| | | id: undefined, |
| | | devId: undefined, |
| | | patId: undefined, |
| | | patName: undefined, |
| | | patDeptCode: undefined, |
| | | patDeptDesc: undefined, |
| | | patWardCode: undefined, |
| | | patWardDesc: undefined, |
| | | patBedNo: undefined, |
| | | rentTime: new Date().getTime(), |
| | | returnTime: undefined, |
| | | interference: undefined, |
| | | baseline: undefined, |
| | | detachment: undefined, |
| | | remark: undefined, |
| | | category: '', |
| | | brand: '', |
| | | model: '', |
| | | } |
| | | formRef.value?.resetFields() |
| | | } |
| | | |
| | | const getDevInfo = async () => { |
| | | if (isStringEmpty(formData.value.devId)) { |
| | | formData.value.category = "" |
| | | formData.value.brand = "" |
| | | formData.value.model = "" |
| | | return |
| | | } |
| | | |
| | | const data = await DeviceApi.getDeviceByDevId(formData.value.devId!) |
| | | console.info( data ) |
| | | formData.value.category = data === null ? "" : data.category |
| | | formData.value.brand = data === null ? "" : data.brand |
| | | formData.value.model = data === null ? "" : data.model |
| | | } |
| | | |
| | | /* |
| | | const getRentInfoByDevId = () => { |
| | | const tempDevId = formData.value.devId; |
| | | resetForm() |
| | | if (isStringEmpty(tempDevId)) |
| | | return |
| | | |
| | | formData.value.devId = tempDevId; |
| | | getRentInfo() |
| | | } |
| | | */ |
| | | |
| | | const getRentInfoByPatId = () => { |
| | | const tempPatId = formData.value.patId; |
| | | resetForm() |
| | | if (isStringEmpty(tempPatId)) |
| | | return |
| | | |
| | | formData.value.patId = tempPatId; |
| | | getRentInfo() |
| | | } |
| | | |
| | | const getRentInfo = async () => { |
| | | const data = await DevRentApi.getReadyRent(formData.value) |
| | | if (null === data) |
| | | return |
| | | |
| | | formData.value = data |
| | | if (data.returnTime === null) |
| | | data.returnTime = new Date().getTime() |
| | | } |
| | | |
| | | |
| | | const loading = ref(true) // 列表的加载中 |
| | | const list = ref<JobRecordVO[]>([]) // 列表的数据 |
| | | const total = ref(0) // 列表的总页数 |
| | | const queryParams = reactive({ |
| | | pageNo: 1, |
| | | pageSize: 10, |
| | | jobType: [10, 35], |
| | | docId: undefined, |
| | | docName: undefined, |
| | | devId: undefined, |
| | | patId: undefined, |
| | | patName: undefined, |
| | | jobTime: [curDayStart(), curDayEnd()], |
| | | summary: undefined, |
| | | remark: undefined, |
| | | createTime: [] |
| | | const onStagePatient = ref<QueueVO>({ |
| | | bedNo: "", bookCheckType: 0, bookTimeslot: 0, expired: 0, id: 0, jumpFlag: 0, passed: 0, |
| | | patGender: 0, patId: "", patName: "", roomId: 0, roomName: "", seqNum: 0, status: 0 |
| | | }) |
| | | /** 查询列表 */ |
| | | const getList = async () => { |
| | | loading.value = true |
| | | |
| | | const patientStat = ref<PatientStatisticVO>({ |
| | | finishedNum: 0, |
| | | readyNum: 0, |
| | | passedNum: 0, |
| | | queuingNum: 0 |
| | | }) |
| | | |
| | | const state = ref<boolean>() |
| | | |
| | | const patientList = ref<QueueVO[]>([]) |
| | | |
| | | let timerRunFlag : boolean = false |
| | | const bedControlFlag = ref<boolean>(true); |
| | | const finishFlag = ref<boolean>(true); |
| | | const passFlag = ref<boolean>(true); |
| | | |
| | | const finishNextPatient = async () => { |
| | | finishFlag.value = true |
| | | try { |
| | | const data = await JobRecordApi.getJobRecordDoctorPage(queryParams) |
| | | list.value = data.list |
| | | total.value = data.total |
| | | patientList.value = await DoctorApi.finishInstallNextPatient(roomBedVO.value) |
| | | patientStat.value = await DoctorApi.getPatientStatistic(roomBedVO.value) |
| | | getOnstagePatient() |
| | | } finally { |
| | | loading.value = false |
| | | finishFlag.value = false |
| | | } |
| | | } |
| | | |
| | | const onRowClick = (cur) => { |
| | | if (cur !== null) |
| | | getSelectedRent( cur.rentId ) |
| | | } |
| | | |
| | | const getSelectedRent = async (rentId) => { |
| | | formData.value = await DevRentApi.getDevRent(rentId) |
| | | } |
| | | |
| | | const cancelInstall = async () => { |
| | | const data = formData.value as unknown as DevRentVO |
| | | if (formData.value.id === null || formData.value.id === undefined) { |
| | | const result = await DevRentApi.devInstallCancel(data) |
| | | formData.value.id = result |
| | | message.success(t('操作成功')) |
| | | } else { |
| | | await DevRentApi.devInstallCancel(data) |
| | | message.success(t('操作成功')) |
| | | const passNextPatient = async () => { |
| | | passFlag.value = true |
| | | try { |
| | | patientList.value = await DoctorApi.passNextPatient(roomBedVO.value) |
| | | patientStat.value = await DoctorApi.getPatientStatistic(roomBedVO.value) |
| | | getOnstagePatient() |
| | | } finally { |
| | | passFlag.value = false |
| | | } |
| | | // 发送操作成功的事件 |
| | | emit('success-install') |
| | | resetForm() |
| | | getList() |
| | | } |
| | | |
| | | const callAgain = async () => { |
| | | await DoctorApi.callAgainPatient(roomBedVO.value) |
| | | } |
| | | |
| | | const getOnstagePatient = () => { |
| | | const tempPatient : QueueVO | undefined = patientList.value.find(item => item.status === 30) |
| | | if (undefined === tempPatient) { |
| | | setOnStagePatient(undefined) |
| | | } else if (tempPatient.patId !== onStagePatient.value.patId) { |
| | | onStagePatient.value= tempPatient |
| | | setOnStagePatient(tempPatient) |
| | | } |
| | | } |
| | | |
| | | const initLoad = async () => { |
| | | if (roomBedVO.value.roomId == null) { |
| | | ElNotification.error({ |
| | | message: '请重新就座!', |
| | | type: 'info', |
| | | duration: 3000 // 自动关闭时间,默认为3000ms |
| | | }) |
| | | return |
| | | } |
| | | |
| | | patientList.value = await DoctorApi.getReceivedPatientList(roomBedVO.value) |
| | | getOnstagePatient() |
| | | patientStat.value = await DoctorApi.getPatientStatistic(roomBedVO.value) |
| | | const queueVO2 = await DoctorApi.bedDoctorGet(roomBedVO.value) |
| | | if (queueVO2.status === 20) |
| | | state.value = true |
| | | else if (queueVO2.status === 30) |
| | | state.value = false |
| | | } |
| | | |
| | | const bedControl = async () => { |
| | | bedControlFlag.value = true |
| | | try { |
| | | if (state.value) { |
| | | await DoctorApi.bedDoctorPause(roomBedVO.value) |
| | | state.value = false |
| | | } else { |
| | | await DoctorApi.bedDoctorResume(roomBedVO.value) |
| | | state.value = true |
| | | } |
| | | } finally { |
| | | bedControlFlag.value = false |
| | | } |
| | | } |
| | | |
| | | const doctorTimer = () => { |
| | | console.log('doctorTimer ...') |
| | | initLoad() |
| | | if (timerRunFlag) |
| | | setTimeout(doctorTimer, 5000) // five seconds |
| | | } |
| | | |
| | | /** 初始化 **/ |
| | | onMounted(() => { |
| | | resetForm() |
| | | getList() |
| | | timerRunFlag = false |
| | | bedControlFlag.value = true |
| | | finishFlag.value = true |
| | | passFlag.value = true |
| | | |
| | | if (userStore.isSetRoom) { |
| | | roomBedVO.value.roomId = userStore.room!.roomId |
| | | roomBedVO.value.roomName = userStore.room!.roomName |
| | | roomBedVO.value.bedNo = userStore.room!.bedNo |
| | | |
| | | timerRunFlag = true |
| | | doctorTimer() |
| | | } else { |
| | | roomBedVO.value.roomId = null |
| | | roomBedVO.value.bedNo = null |
| | | } |
| | | |
| | | bedControlFlag.value = false |
| | | finishFlag.value = false |
| | | passFlag.value = false |
| | | |
| | | console.info( roomBedVO.value ) |
| | | }) |
| | | |
| | | onUnmounted( () =>{ |
| | | timerRunFlag = false |
| | | }) |
| | | |
| | | const onEventDevInstall = () => { |
| | | //console.info("onDevInstallPanelEvent...") |
| | | } |
| | | |
| | | const onEventRecallFinish = () => { |
| | | initLoad() |
| | | } |
| | | |
| | | /** 患者变更操作 */ |
| | | const devInstallPanelRef = ref() |
| | | const setOnStagePatient = (tempPatient: QueueVO | undefined) => { |
| | | devInstallPanelRef.value.setPatient(tempPatient) |
| | | } |
| | | |
| | | </script> |
| | | |
| | | <template> |
| | | <el-container> |
| | | <el-header style="background-color: var(--el-color-primary-light-7); font-size: 24px"> |
| | | <TitleInstallPanel :room="roomBedVO" :patientStatistic="patientStat" /> |
| | | </el-header> |
| | | <el-container style="height: 100%;"> |
| | | <el-main style="border: solid var(--el-color-primary-light-7)"> |
| | | <DevInstallPanel ref="devInstallPanelRef" @event_dev_install="onEventDevInstall"/> |
| | | </el-main> |
| | | <el-aside width="400px" style="border: solid var(--el-color-primary-light-7)"> |
| | | <QueuePanel :queue="patientList" @event_RecallFinish="onEventRecallFinish"/> |
| | | </el-aside> |
| | | </el-container> |
| | | <el-container class="right-bottom"> |
| | | <el-button :disabled="finishFlag" type="primary" @click="finishNextPatient">叫号</el-button> |
| | | <el-button :disabled="passFlag" type="primary" @click="passNextPatient">过号</el-button> |
| | | <el-button type="primary" @click="callAgain">重叫</el-button> |
| | | <el-button :disabled="bedControlFlag" type="primary" @click="bedControl">{{state?'暂停':'恢复'}}</el-button> |
| | | </el-container> |
| | | </el-container> |
| | | </template> |
| | | |
| | | <style scoped lang="scss"> |
| | | .right-bottom { |
| | | position: absolute; |
| | | bottom: 50px; |
| | | right: 100px; |
| | | //background-color: #f00; |
| | | //color: #fff; |
| | | //padding: 10px; |
| | | } |
| | | </style> |