1
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
7f48e37779
commit
7478472e33
|
|
@ -2833,7 +2833,13 @@ export function getSplitPPdSum(param) {
|
|||
data: param
|
||||
})
|
||||
}
|
||||
|
||||
export function getSplitPPdSumNoPet(param) {
|
||||
return request({
|
||||
url: `/LuganoWithoutPETCalculateService/getSplitPPdSum`,
|
||||
method: 'post',
|
||||
data: param
|
||||
})
|
||||
}
|
||||
export function submitDicomVisitTask(param) {
|
||||
return request({
|
||||
url: `/Inspection/ReadingImageTask/SubmitDicomVisitTask`,
|
||||
|
|
@ -2872,7 +2878,13 @@ export function getIsSuvMaxLesion(param) {
|
|||
data: param
|
||||
})
|
||||
}
|
||||
|
||||
export function getIsSuvMaxLesionNoPet(param) {
|
||||
return request({
|
||||
url: `/LuganoWithoutPETCalculateService/getIsSuvMaxLesion`,
|
||||
method: 'post',
|
||||
data: param
|
||||
})
|
||||
}
|
||||
export function getCanChooseNotMerge(param) {
|
||||
return request({
|
||||
url: `/LuganoCalculate/getCanChooseNotMerge`,
|
||||
|
|
@ -2880,6 +2892,13 @@ export function getCanChooseNotMerge(param) {
|
|||
data: param
|
||||
})
|
||||
}
|
||||
export function getCanChooseNotMergeNoPet(param) {
|
||||
return request({
|
||||
url: `/LuganoWithoutPETCalculateService/getCanChooseNotMerge`,
|
||||
method: 'post',
|
||||
data: param
|
||||
})
|
||||
}
|
||||
export function saveTaskQuestion(saveQuestionType, param) {
|
||||
return request({
|
||||
url: `/SaveTaskQuestion/${saveQuestionType}`,
|
||||
|
|
@ -3603,13 +3622,24 @@ export function getSplenicState(visitTaskId, spleenLength) {
|
|||
method: 'post'
|
||||
})
|
||||
}
|
||||
|
||||
export function getSplenicStateNoPet(visitTaskId, spleenLength) {
|
||||
return request({
|
||||
url: `/LuganoWithoutPETCalculateService/getSplenicState?visitTaskId=${visitTaskId}&spleenLength=${spleenLength}`,
|
||||
method: 'post'
|
||||
})
|
||||
}
|
||||
export function getSplenicVerify(visitTaskId) {
|
||||
return request({
|
||||
url: `/LuganoCalculate/getSplenicVerify?visitTaskId=${visitTaskId}`,
|
||||
method: 'post'
|
||||
})
|
||||
}
|
||||
export function getSplenicVerifyNoPet(visitTaskId) {
|
||||
return request({
|
||||
url: `/LuganoWithoutPETCalculateService/getSplenicVerify?visitTaskId=${visitTaskId}`,
|
||||
method: 'post'
|
||||
})
|
||||
}
|
||||
export function uploadTrialSiteSurveyUser(trialId, baseUrl, routeUrl, param) {
|
||||
return request({
|
||||
url: `/TrialSiteSurvey/UploadTrialSiteSurveyUser?trialId=${trialId}&baseUrl=${baseUrl}&routeUrl=${routeUrl}`,
|
||||
|
|
|
|||
Loading…
Reference in New Issue