import request from '@/utils/request'
|
|
// 查询患者门诊记录列表
|
export function listPatouthosp(query) {
|
return request({
|
url: '/smartor/patouthosp/selectPatMedOuthospList',
|
method: 'post',
|
data: query
|
})
|
}
|
// 查询待入院记录列表
|
export function listPatMedInhosp(query) {
|
return request({
|
url: '/smartor/patinhosp/selectPatMedInhospList',
|
method: 'post',
|
data: query
|
})
|
}
|
|
// 查询患者门诊记录详细
|
export function getPatouthosp(id) {
|
return request({
|
url: '/smartor/patouthosp/' + id,
|
method: 'get'
|
})
|
}
|
|
// 新增患者门诊记录
|
export function addPatouthosp(data) {
|
return request({
|
url: '/smartor/patouthosp',
|
method: 'post',
|
data: data
|
})
|
}
|
|
// 修改患者门诊记录
|
export function updatePatouthosp(data) {
|
return request({
|
url: '/smartor/patouthosp/edit',
|
method: 'post',
|
data: data
|
})
|
}
|
|
// 删除患者门诊记录
|
export function delPatouthosp(id) {
|
return request({
|
url: '/smartor/patouthosp/remove/' + id,
|
method: 'get'
|
})
|
}
|