postdischarge-ui/src/api/system/followupsee.js
2024-06-17 09:34:35 +08:00

31 lines
727 B
JavaScript

import request from '@/utils/request'
export function selectFollowPatientInfo(id) {
return request({
url: '/manage/signroute/selectFollowPatientInfo/' + id,
method: 'get',
})
}
export function selectPhonePush(manageRouteNodeId) {
return request({
url: `/manage/signroute/selectPhonePush?manageRouteNodeId=${manageRouteNodeId}`,
method: 'get',
})
}
// 问卷量表
export function question(id) {
return request({
url: '/system/question/' + id,
method: 'get',
})
}
//保存
export function addPatientQuestionResult(data) {
return request({
url: '/manage/signroute/addPatientQuestionResult',
method: 'post',
data: data
})
}