增加回传接口

This commit is contained in:
Euni4U 2025-04-17 10:51:29 +08:00
parent e4501658ae
commit 143f090fe5
2 changed files with 6 additions and 0 deletions

View File

@ -149,5 +149,9 @@ export const PatientApi = {
//获取条形码编号
GetbarcodeInfo: async (medicalSn: string) => {
return await request.get({ url: `/inspect/patient/GetbarcodeInfo?medicalSn=` + medicalSn })
},
//体检报告信息回传
PushJYPatientInfo: async (medicalSn: string) => {
return await request.get({ url: `/inspect/patient/PushJYPatientInfo?medicalSn=` + medicalSn })
}
}

View File

@ -2208,6 +2208,8 @@ const handleSaveAllResults = async () => {
ElMessage.success('所有检查结果保存成功')
await PatientApi.generateReport(selectedPatient.value?.medicalSn)
//
PatientApi.PushJYPatientInfo(selectedPatient.value?.medicalSn)
//
await refreshExamData()
} catch (error) {