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 @@