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

22 lines
525 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({
url: '/manage/signroute/selectFollowPatientInfo/'+id,
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
})
}