From 563952b6d7c953ab7888512ea6c78d9cad0f80b6 Mon Sep 17 00:00:00 2001 From: eight <641137800@qq.com> Date: 星期二, 15 四月 2025 13:26:50 +0800 Subject: [PATCH] update --- src/views/ecg/doctor/DevInstall.vue | 5 ++++- src/views/ecg/doctor/Routine.vue | 7 ++++++- src/views/ecg/doctor/index.vue | 5 ++++- src/views/ecg/doctor/components/DevInstallPanel.vue | 2 +- 4 files changed, 15 insertions(+), 4 deletions(-) diff --git a/src/views/ecg/doctor/DevInstall.vue b/src/views/ecg/doctor/DevInstall.vue index 190c3df..6b4866c 100644 --- a/src/views/ecg/doctor/DevInstall.vue +++ b/src/views/ecg/doctor/DevInstall.vue @@ -154,7 +154,10 @@ }) const onEventDevInstall = () => { - installingPatient.patId = "" + installingPatient = { + bedNo: "", bookCheckType: 0, bookTimeslot: 0, expired: 0, id: 0, jumpFlag: 0, passed: 0, + patGender: 0, patId: "", patName: "", roomId: 0, roomName: "", seqNum: 0, status: 0 + } if (autoCall.value) { finishNextPatient() diff --git a/src/views/ecg/doctor/Routine.vue b/src/views/ecg/doctor/Routine.vue index 3b63189..671c8d0 100644 --- a/src/views/ecg/doctor/Routine.vue +++ b/src/views/ecg/doctor/Routine.vue @@ -156,7 +156,12 @@ const onEventRoutine = () => { //console.info("onDevRentPanelEvent...") - onStagePatient.patId = "" + onStagePatient = { + id: 0, patId: "", patName: "", patGender: 0, + bookTimeslot: 0, bookCheckType: 0, isVip: 0, seqNum: 0, bookSeqNum: 0, + passed: 0, expired: 0, jumpFlag: 0, + roomId: 0, roomName: "", bedNo: "", status: 0 + } if (autoCall.value) { finishNextPatient() diff --git a/src/views/ecg/doctor/components/DevInstallPanel.vue b/src/views/ecg/doctor/components/DevInstallPanel.vue index 9079021..e7cbef3 100644 --- a/src/views/ecg/doctor/components/DevInstallPanel.vue +++ b/src/views/ecg/doctor/components/DevInstallPanel.vue @@ -7,7 +7,7 @@ v-loading="formLoading" > <el-form-item label="妫�鏌ラ」鐩�" prop=""> - {{formData?.checkType && getCheckTypeName(formData?.checkType)}} + {{getCheckTypeName(formData.checkType)}} </el-form-item> <el-row :gutter="20"> <el-col :span="12"> diff --git a/src/views/ecg/doctor/index.vue b/src/views/ecg/doctor/index.vue index f119c29..0bf3ffa 100644 --- a/src/views/ecg/doctor/index.vue +++ b/src/views/ecg/doctor/index.vue @@ -152,7 +152,10 @@ }) const onEventDevReady = () => { - onStagePatient.patId = "" + onStagePatient = { + bedNo: "", bookCheckType: 0, bookTimeslot: 0, expired: 0, id: 0, jumpFlag: 0, passed: 0, + patGender: 0, patId: "", patName: "", roomId: 0, roomName: "", seqNum: 0, status: 0 + } if (autoCall.value) { finishNextPatient() -- Gitblit v1.9.3