患者端1.0
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
import {request} from '../utils/request.js'
|
||||
function isExist(data){ //检测家庭成员是否存在病情记录
|
||||
return request('/patient/pathography/exist','GET',data,false)
|
||||
};
|
||||
function pathographyList(data){ //获取家庭成员病情记录列表
|
||||
return request('/patient/pathography','GET',data)
|
||||
};
|
||||
function pathographyDetail(id){ //获取家庭成员病情记录列表
|
||||
return request('/patient/pathography/'+id,'GET')
|
||||
};
|
||||
function pathographyGroup(){ //获取家庭成员病情记录分组
|
||||
return request('/patient/pathography/group','GET')
|
||||
};
|
||||
function pathographyDelete(id){ // 删除家庭成员病情记录
|
||||
return request('/patient/pathography/'+id,'DELETE')
|
||||
};
|
||||
|
||||
module.exports={
|
||||
isExist,
|
||||
pathographyList,
|
||||
pathographyDetail
|
||||
}
|
||||
Reference in New Issue
Block a user