postdischarge-ui/src/api/manage/Auditing.js

27 lines
571 B
JavaScript
Raw Normal View History

2024-04-12 10:23:12 +08:00
import request from '@/utils/request'
// 查询管理任务路径及节点
export function getRouteNodeList(query) {
return request({
url: '/manage/signnode/getRouteNodeList',
method: 'get',
params: query
})
}
2024-04-12 15:39:15 +08:00
//获取患者信息
2024-04-12 16:38:08 +08:00
export function getByPatientId(patientId) {
2024-04-12 15:39:15 +08:00
return request({
2024-04-12 16:38:08 +08:00
url: `/manage/visitRecord/getByPatientId/${patientId}`,
2024-04-12 15:39:15 +08:00
method: 'get',
})
2024-04-12 16:38:08 +08:00
}
//审核
export function audit(data) {
return request({
url: `/manage/signnode/audit`,
method: 'post',
data
})
2024-04-12 15:39:15 +08:00
}