|
|
|
@ -492,7 +492,7 @@ |
|
|
|
<div v-show="dialogWin.sumPrList" |
|
|
|
:style="`z-index:3;border-radius: 10px;border: 1px solid #ddd;background-color:#FFF; position: absolute;top:50px;right:120px;width:350px;height: ${window.pageHeight - 42 - 10}px;opacity:1;`"> |
|
|
|
|
|
|
|
<PatientRegisterList win="sumDoctorCheck" :winAbsolute="true" /> |
|
|
|
<PatientRegisterList win="sumDoctorCheck" :winAbsolute="true" @choosedBak="choosedBak"/> |
|
|
|
|
|
|
|
</div> |
|
|
|
</div> |
|
|
|
@ -992,14 +992,30 @@ export default { |
|
|
|
|
|
|
|
// 根据人员ID 查询总检数据 |
|
|
|
triggerQuery(rd) { |
|
|
|
console.log('triggerQuery.patientRegisterId', rd) |
|
|
|
console.log('triggerQuery.rd', rd) |
|
|
|
this.patient_register = Object.assign(this.patient_register,rd) |
|
|
|
this.refParamsQuery = Object.assign({}, this.refParamsQuery, rd, { brushSummary: Number(this.refParamsQuery.brushSummary) + 1 }) |
|
|
|
this.refParamsQuery = Object.assign({}, this.refParamsQuery, rd, |
|
|
|
{ brushSummary: Number(this.refParamsQuery.brushSummary) + 1 //触发综述建议刷新 |
|
|
|
} |
|
|
|
) |
|
|
|
|
|
|
|
console.log('this.patient_register',this.patient_register) |
|
|
|
//brushSummary++ 刷新综述建议 |
|
|
|
}, |
|
|
|
|
|
|
|
// 人员列表选中数据 |
|
|
|
choosedBak(choosedData){ |
|
|
|
console.log('choosedBak.choosedData', choosedData) |
|
|
|
this.patient_register = Object.assign(this.patient_register,rd) |
|
|
|
this.refParamsQuery = Object.assign({}, this.refParamsQuery, rd, |
|
|
|
{ brushSummary: Number(this.refParamsQuery.brushSummary) + 1 , //触发综述建议刷新 |
|
|
|
brushQueryDisp:Number(this.refParamsQuery.brushQueryDisp) + 1 // 触发人员信息刷新 |
|
|
|
} |
|
|
|
) |
|
|
|
|
|
|
|
console.log('this.patient_register',this.patient_register) |
|
|
|
}, |
|
|
|
|
|
|
|
// 人员列表按钮 |
|
|
|
btnPrList() { |
|
|
|
this.dialogWin.sumPrList = true |
|
|
|
@ -2668,7 +2684,6 @@ export default { |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
|
|
|
|
}, |
|
|
|
}; |
|
|
|
</script> |
|
|
|
|