recover_api.js 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. (function(exports) {
  2. var recoverAPI = {
  3. // 居民康复详情
  4. patientRehabilitationDetail: function(data) {
  5. return httpRequest.get("doctor/specialist/rehabilitation/patientRehabilitationDetail", {data: data})
  6. },
  7. // 近期康复记录
  8. recentPlanDetailRecord: function(data) {
  9. return httpRequest.get("doctor/specialist/rehabilitation/recentPlanDetailRecord", {data: data})
  10. },
  11. // 就诊记录
  12. archivesEvent: function(data) {
  13. return httpRequest.get("doctor/archives/event", {data: data})
  14. },
  15. // 完成项目详情
  16. serviceItem: function(data) {
  17. return httpRequest.get("doctor/specialist/rehabilitation/serviceItem", {data: data})
  18. },
  19. // 获取专病居民类别
  20. findLabelAndPatientCountByDoctor: function(data) {
  21. return httpRequest.get("doctor/specialist/findLabelAndPatientCountByDoctor", {data: data})
  22. },
  23. // 获取居民列表by医生
  24. getPatientInfoByDoctor: function(data) {
  25. return httpRequest.get("doctor/specialist/getPatientInfoByDoctor", {data: data})
  26. },
  27. // 获取居民信息
  28. getPatientInfo: function(data) {
  29. return httpRequest.get("doctor/patient_label_info/patient", {data: data})
  30. },
  31. // 获取模板列表
  32. findTemplateList: function(data) {
  33. return httpRequest.get("/doctor/specialist/rehabilitationPlan/findTemplateList", {data: data})
  34. },
  35. // 获取模板详细
  36. findTemplateDetail: function(data) {
  37. return httpRequest.get("/doctor/specialist/rehabilitationPlan/findTemplateDetail", {data: data})
  38. },
  39. // 删除模板
  40. deleteTemplate: function(data) {
  41. return httpRequest.get("/doctor/specialist/rehabilitationPlan/deleteTemplate", {data: data})
  42. },
  43. // 获取机构服务项目列表
  44. findServiceItemsByHospital: function(data) {
  45. return httpRequest.get("/doctor/specialist/hospitalServiceItem/findServiceItemsByHospital", {data: data})
  46. },
  47. // 获取医生团队疾病
  48. findTeamDiseaseRelation: function(data) {
  49. return httpRequest.get("third/specialist/findTeamDiseaseRelation", {data: data})
  50. },
  51. // 根据机构服务id获取详细信息
  52. selectByIds: function(data) {
  53. return httpRequest.get("doctor/specialist/hospitalServiceItem/selectByIds", {data: data})
  54. },
  55. // 创建康复计划
  56. createRehabilitationPlan: function(data) {
  57. return httpRequest.post("doctor/specialist/rehabilitationPlan/createRehabilitationPlan", {data: data})
  58. },
  59. // 根据患者获取专科医生跟技管师
  60. findPatientSignSpecialistInfo: function(data) {
  61. return httpRequest.get("doctor/specialist/findPatientSignSpecialistInfo", {data: data})
  62. },
  63. // 获取频次接口
  64. selectFrequencys: function(data) {
  65. return httpRequest.get("doctor/specialist/rehabilitation/selectFrequencys", {data: data})
  66. },
  67. // 获取专科团队接口
  68. specialistTeam: function(data) {
  69. return httpRequest.get("doctor/admin-teams/teams/info", {data: data})
  70. },
  71. }
  72. exports.recoverAPI = recoverAPI;
  73. })(window)