|
|
|
@ -197,10 +197,10 @@ |
|
|
|
<FollowCriticalCheck /> |
|
|
|
</el-dialog> |
|
|
|
<!-- 体检人员登记 --> |
|
|
|
<el-dialog :title="doctorCheck.prBase.id ? '体检人员--编辑' : '体检人员--新增'" :visible.sync="dialogWin.PatientRegisterEdit" |
|
|
|
<el-dialog :title="patient_register.id ? '体检人员--编辑' : '体检人员--新增'" :visible.sync="dialogWin.PatientRegisterEdit" |
|
|
|
:close-on-click-modal="false" fullscreen @close="closeDialogWinPatientRegisterEdit"> |
|
|
|
<!-- :formInitData="formData" --> |
|
|
|
<PatientRegisterEdit style="z-index:30001;" :isDoctor="'1'" :patientRegisterId="doctorCheck.prBase.id" |
|
|
|
<PatientRegisterEdit style="z-index:30001;" :isDoctor="'1'" :patientRegisterId="patient_register.id" |
|
|
|
:editTimes="editTimes" :refreshRegister="refreshRegister" /> |
|
|
|
</el-dialog> |
|
|
|
<el-dialog title="设置体检日期" style="z-index:30002;" :visible.sync="dialogVisibleSetStartDate" |
|
|
|
@ -220,19 +220,19 @@ |
|
|
|
<div> |
|
|
|
<el-tabs v-model="tabChoosed"> |
|
|
|
<el-tab-pane label="明细结果" name="2"> |
|
|
|
<CheckDetails :patientRegisterId="doctorCheck.prBase.id" :refParams="refParams" /> |
|
|
|
<CheckDetails :patientRegisterId="patient_register.id" :refParams="refParams" /> |
|
|
|
</el-tab-pane> |
|
|
|
<el-tab-pane label="图文报告" name="4"> |
|
|
|
<ImageTextReport :refParams="refParams" /> |
|
|
|
</el-tab-pane> |
|
|
|
<!-- <el-tab-pane label="项目对比" name="4"> |
|
|
|
<SumItemsType :patientId="doctorCheck.prBase.patientId" /> |
|
|
|
<SumItemsType :patientId="patient_register.patientId" /> |
|
|
|
</el-tab-pane> --> |
|
|
|
<el-tab-pane label="横向对比" name="5"> |
|
|
|
<SumItems :patientId="doctorCheck.prBase.patientId" :refParams="refParams" /> |
|
|
|
<SumItems :patientId="patient_register.patientId" :refParams="refParams" /> |
|
|
|
</el-tab-pane> |
|
|
|
<el-tab-pane label="历次综述" name="6"> |
|
|
|
<SumHistory :patientId="doctorCheck.prBase.patientId" :refParams="refParams" /> |
|
|
|
<SumHistory :patientId="patient_register.patientId" :refParams="refParams" /> |
|
|
|
</el-tab-pane> |
|
|
|
</el-tabs> |
|
|
|
</div> |
|
|
|
@ -1426,13 +1426,9 @@ export default { |
|
|
|
|
|
|
|
// 历次结果 |
|
|
|
btnCheckHistory() { |
|
|
|
if (!this.doctorCheck.prBase.id) return; |
|
|
|
if (!this.patient_register.id) return; |
|
|
|
this.dialogVisibleCheckHistory = true; |
|
|
|
this.refParams = Object.assign({}, this.refParams, { brushTimes: Number(this.refParams.brushTimes) + 1, patientRegisterId: this.doctorCheck.prBase.id }) |
|
|
|
|
|
|
|
this.dataTransOpts.refresh.sumDoctor.M++ //刷新历次明细 |
|
|
|
this.dataTransOpts.plus.OccDisease++ //刷新图文报告 |
|
|
|
|
|
|
|
this.refParams = Object.assign({}, this.refParams, { brushTimes: Number(this.refParams.brushTimes) + 1, patientRegisterId: this.patient_register.id }) |
|
|
|
}, |
|
|
|
|
|
|
|
//体检报告 |
|
|
|
@ -1471,7 +1467,7 @@ export default { |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
toOutShell.BusinessCode = this.doctorCheck.prBase.id |
|
|
|
toOutShell.BusinessCode = this.patient_register.id |
|
|
|
this.$peisAPI.printPre(JSON.stringify(toOutShell)) |
|
|
|
.then(res => { |
|
|
|
if (res) { |
|
|
|
|