简历部分接口添加项目id
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-10-29 14:16:30 +08:00
parent 9f9255d315
commit 2d938d077e
4 changed files with 19 additions and 4 deletions
+10 -4
View File
@@ -140,8 +140,11 @@ export function addOrUpdateResearchPublication(param) {
export function getTrialExperience(doctorId) {
return request({
url: `/trialExperience/getTrialExperience/${doctorId}`,
method: 'get'
url: `/trialExperience/getTrialExperience`,
method: 'post',
data: {
DoctorId: doctorId
}
})
}
@@ -238,8 +241,11 @@ export function downloadByAttachmentId(doctorId, attachmentIds) {
export function getDetail(doctorId) {
return request({
url: `/doctor/getDetail/${doctorId}`,
method: 'get'
url: `/doctor/getDetail`,
method: 'post',
data: {
DoctorId: doctorId
}
})
}