From d13d7014e88af5cd0ab3a232ba3fe4eaa597388b Mon Sep 17 00:00:00 2001 From: pengjun <158915633@qq.com> Date: Mon, 29 Apr 2024 21:50:22 +0800 Subject: [PATCH] 0005 --- .../patientRegister/PatientLisRequest.vue | 2 +- .../PatientRegisterEditQuery.vue | 11 +- .../patientRegister/PatientRegisterItem.vue | 20 +++- .../patientRegister/PatientRegisterList.vue | 100 +++++++++++------- .../patientRegisterAsbItem.vue | 30 ++++-- src/components/report/BtnReport.vue | 3 +- src/components/report/RegisterCheckStatus.vue | 21 +++- 7 files changed, 132 insertions(+), 55 deletions(-) diff --git a/src/components/patientRegister/PatientLisRequest.vue b/src/components/patientRegister/PatientLisRequest.vue index 0a46ced..22600a5 100644 --- a/src/components/patientRegister/PatientLisRequest.vue +++ b/src/components/patientRegister/PatientLisRequest.vue @@ -114,7 +114,7 @@ export default { btnChoose(isChooseAll) { if (isChooseAll) { this.chooseRows = deepCopy(this.dataTransOpts.tableM.lis_request) - this.chooseRows.forEach(e => { + this.dataTransOpts.tableM.lis_request.forEach(e => { this.$refs['lis_request'].setCurrentRow(e); }); } else { diff --git a/src/components/patientRegister/PatientRegisterEditQuery.vue b/src/components/patientRegister/PatientRegisterEditQuery.vue index dd28e1a..3414330 100644 --- a/src/components/patientRegister/PatientRegisterEditQuery.vue +++ b/src/components/patientRegister/PatientRegisterEditQuery.vue @@ -1,23 +1,32 @@