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

53 lines
1.1 KiB
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-06-27 09:02:48 +08:00
}
//路径信息
export function getRouteAuditinfo(signRecordId) {
return request({
url: `/manage/signroute/getRouteAuditInfo/${signRecordId}`,
method: 'get',
})
}
//路径任务
export function getRouteNodeInfo(signRecordId) {
return request({
url: `/manage/signroute/getRouteNodeInfo/${signRecordId}`,
method: 'get',
})
}
//路径审核
export function updateRouteCheckStatus(data) {
return request({
url: `/manage/signRecord/updateRouteCheckStatus`,
method: 'post',
data
})
}