diff --git a/src/api/trials.js b/src/api/trials.js index 94baeebc..2e79d92f 100644 --- a/src/api/trials.js +++ b/src/api/trials.js @@ -4430,4 +4430,22 @@ export function updateImageResizePath(data) { method: 'post', data }) +} + +// 获取PET图像上患者信息 +export function getPatientInfo(data) { + return request({ + url: `/Study/getPatientInfo`, + method: 'post', + data + }) +} + +//编辑患者基本信息 +export function editPatientInfo(data) { + return request({ + url: `/Study/editPatientInfo`, + method: 'post', + data + }) } \ No newline at end of file diff --git a/src/components/Dicom/DicomViewer.vue b/src/components/Dicom/DicomViewer.vue index 6bf1934a..b80069de 100644 --- a/src/components/Dicom/DicomViewer.vue +++ b/src/components/Dicom/DicomViewer.vue @@ -335,6 +335,100 @@ + + +