diff --git a/src/components/doctorCheck/CheckItemList.vue b/src/components/doctorCheck/CheckItemList.vue index 7420fb2..33cbc1e 100644 --- a/src/components/doctorCheck/CheckItemList.vue +++ b/src/components/doctorCheck/CheckItemList.vue @@ -924,6 +924,7 @@ export default { LastModificationTime: "", completeFlag: "", }; + this.gridData = [] // 清空历次明细 return; } console.log( @@ -964,6 +965,7 @@ export default { }); //console.log('this.doctorCheck.checkItemList',res.data) this.doctorCheck.checkItemList = res.data; + this.doctorCheck.checkItemList.forEach((e, i) => { if (this.doctorCheck.RegisterCheckEdit.completeFlag == "0") { @@ -978,6 +980,11 @@ export default { e.class = this.resultStatus[lfind].tooltips; } } + + // 刷新历次明细显示 + if(i == 0){ + this.itemRowClick(e) + } }); // 光标定位第一个输入框 diff --git a/src/components/patientRegister/PatientRegisterEdit.vue b/src/components/patientRegister/PatientRegisterEdit.vue index e012ef2..44c374c 100644 --- a/src/components/patientRegister/PatientRegisterEdit.vue +++ b/src/components/patientRegister/PatientRegisterEdit.vue @@ -2562,7 +2562,7 @@ export default { } this.$peisAPI.photoGrah() .then(res => { - // console.log('this.$peisAPI.photoGrah 原始返回结果', res) + console.log('this.$peisAPI.photoGrah 拍照控件原始返回结果', res) let lres = JSON.parse(res) if (lres.code > -1) { let uploadPhoto = { diff --git a/src/components/patientRegister/PatientRegisterItem.vue b/src/components/patientRegister/PatientRegisterItem.vue index 8185d55..b1b0be6 100644 --- a/src/components/patientRegister/PatientRegisterItem.vue +++ b/src/components/patientRegister/PatientRegisterItem.vue @@ -138,7 +138,7 @@ - +