postdischarge-ui/src/api/system/followupsee.js

31 lines
727 B
JavaScript
Raw Normal View History

2024-04-09 16:20:00 +08:00
import request from '@/utils/request'
export function selectFollowPatientInfo(id) {
return request({
2024-06-17 09:34:35 +08:00
url: '/manage/signroute/selectFollowPatientInfo/' + id,
2024-04-09 16:20:00 +08:00
method: 'get',
})
}
2024-06-17 09:34:35 +08:00
export function selectPhonePush(manageRouteNodeId) {
return request({
url: `/manage/signroute/selectPhonePush?manageRouteNodeId=${manageRouteNodeId}`,
method: 'get',
})
}
2024-04-09 16:20:00 +08:00
// 问卷量表
export function question(id) {
return request({
2024-06-17 09:34:35 +08:00
url: '/system/question/' + id,
2024-04-09 16:20:00 +08:00
method: 'get',
})
}
//保存
export function addPatientQuestionResult(data) {
return request({
url: '/manage/signroute/addPatientQuestionResult',
method: 'post',
data: data
})
2024-06-17 09:34:35 +08:00
}