diff --git a/src/api/ECG/ReportInfoECG/index.ts b/src/api/ECG/ReportInfoECG/index.ts new file mode 100644 index 00000000..59bae718 --- /dev/null +++ b/src/api/ECG/ReportInfoECG/index.ts @@ -0,0 +1,11 @@ +import request from '@/config/axios' + +/* + * 李传洋 + * ReportInfoECGApi + */ +export const ReportInfoECGApi = { + getDoctorBydoctorID: async (doctorID: any) => { + return await request.get({ url: `/doctor/getBydoctorID?doctorID=` + doctorID }) + } +} diff --git a/src/views/applyregistration/reportPrintStatistics/ReportInfoECG.vue b/src/views/applyregistration/reportPrintStatistics/ReportInfoECG.vue index 0a867585..1983ea2d 100644 --- a/src/views/applyregistration/reportPrintStatistics/ReportInfoECG.vue +++ b/src/views/applyregistration/reportPrintStatistics/ReportInfoECG.vue @@ -38,7 +38,21 @@ 住院号:{{ infoParams.regId }} RV5+SV1:{{ extraInfo.rv5Sv1 }} 科室:{{ infoParams.billDoctorDepartment }} - 报告医生:{{ infoParams.doctorname }} + + 报告医生: + + + {{ userProfile_doctor.doctorName }} + +
@@ -140,8 +154,10 @@