Commit 8fd51001 authored by v_liuhuaizhi's avatar v_liuhuaizhi

病例管理-->编辑-->治疗完毕

parent 6662f333
...@@ -23,6 +23,14 @@ export function checkList(params) { ...@@ -23,6 +23,14 @@ export function checkList(params) {
params params
}) })
} }
// 查询治疗项目
export function getTreatOptions(params) {
return request({
url: '/business/item/list',
method: 'get',
params
})
}
export function deleteCheck(id) { export function deleteCheck(id) {
return request({ return request({
url: '/business/check/' + id, url: '/business/check/' + id,
...@@ -45,3 +53,25 @@ export function updateCheck(data) { ...@@ -45,3 +53,25 @@ export function updateCheck(data) {
data data
}) })
} }
// 新增治疗
export function addTreat(data) {
return request({
url: '/business/treat',
method: 'post',
data
})
}
// 编辑治疗
export function updateTreat(data) {
return request({
url: '/business/treat',
method: 'put',
data
})
}
export function deleteTreat(id) {
return request({
url: '/business/treat/' + id,
method: 'delete'
})
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment