From 0561f32c1c7b204ef887878765f3f630a9ca1123 Mon Sep 17 00:00:00 2001 From: pengjun <158915633@qq.com> Date: Mon, 22 Jul 2024 19:34:05 +0800 Subject: [PATCH] dj --- .../doctorCheck/PatientRegisterList.vue | 31 +- src/components/doctorCheck/QueueCheckList.vue | 374 +++++++++++------- .../patientRegister/PatientRegisterList.vue | 62 ++- src/components/queue/Queue.vue | 58 ++- src/components/room/RoomEdit.vue | 2 +- src/store/index.js | 5 + src/views/doctorCheck/doctorCheck.vue | 27 +- 7 files changed, 376 insertions(+), 183 deletions(-) diff --git a/src/components/doctorCheck/PatientRegisterList.vue b/src/components/doctorCheck/PatientRegisterList.vue index 31350f7..a77f276 100644 --- a/src/components/doctorCheck/PatientRegisterList.vue +++ b/src/components/doctorCheck/PatientRegisterList.vue @@ -30,11 +30,18 @@
体检类别: - +
+
+ {{ win == 'doctorCheck' ? '检查' : '总检' }}医生: + + + +
人员状态: @@ -48,7 +55,6 @@ 有图
-
组合项目: { + if (res.code > -1) { + this.users = res.data + } + }) + this.local.completeFlag = deepCopy(this.dict.completeFlag) this.local.completeFlag.splice(0, 1) //预记选项去掉 this.local.completeFlag.splice(2, 0, { id: '5', displayName: '全部已检(未总检)' }) //插入 @@ -453,6 +471,7 @@ export default { if (this.local.query.checkCompleteFlag) body.asbitemCompleteFlag = this.local.query.checkCompleteFlag if (this.local.query.isAuditCheck) body.asbitemIsAudit = this.local.query.isAuditCheck body.medicalTypeIds = this.local.query.medicalTypeIds + body.checkDoctorIds = this.local.query.checkDoctorIds body.isFilterPreRegistration = 'Y' //是否需要过滤预登记数据 Y=过滤预登记数据 N=不过滤 默认为N (备注:只有CompleteFlag参数的值不为0的情况才有效,null值也有效) // "patientName": "string", diff --git a/src/components/doctorCheck/QueueCheckList.vue b/src/components/doctorCheck/QueueCheckList.vue index 5d62a1a..4b0b38b 100644 --- a/src/components/doctorCheck/QueueCheckList.vue +++ b/src/components/doctorCheck/QueueCheckList.vue @@ -1,131 +1,170 @@