fangshi-api.js 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. (function (exports) {
  2. var fangshiAPI = {
  3. // 签到详情
  4. findByFollowupId: function (data) {
  5. return httpRequest.get("doctor/followup/findByFollowupId", { data: data })
  6. },
  7. //获取孕产妇访视详情
  8. getPostpartumVisitDetails: function (data) {
  9. return httpRequest.get("doctor/visitDetail/getPostpartumVisitDetails", { data: data })
  10. },
  11. //保存孕产妇访视详情
  12. savePostpartumVisitDetails: function (data) {
  13. return httpRequest.post("doctor/visitDetail/savePostpartumVisitDetails", { data: data })
  14. },
  15. //保存严重精神障碍患者随访记录
  16. saveFollowupSevereMentalDisorder: function (data) {
  17. return httpRequest.post("doctor/visitDetail/saveFollowupSevereMentalDisorder", { data: data })
  18. },
  19. //获取严重精神障碍患者随访记录
  20. getFollowupSevereMentalDisorder: function (data) {
  21. return httpRequest.get("doctor/visitDetail/getFollowupSevereMentalDisorder", { data: data })
  22. },
  23. //获取新生儿家庭访视记录
  24. getNewbornFamilyVisitRecord: function (data) {
  25. return httpRequest.get("doctor/visitDetail/getNewbornFamilyVisitRecord", { data: data })
  26. },
  27. //保存新生儿家庭访视记录
  28. saveNewbornFamilyVisitRecord: function (data) {
  29. return httpRequest.post("doctor/visitDetail/saveNewbornFamilyVisitRecord", { data: data })
  30. },
  31. //保存老人健康体检随访记录
  32. saveOlderPeopleHealthCheckRecord: function (data) {
  33. return httpRequest.post("doctor/visitDetail/saveOlderPeopleHealthCheckRecord", { data: data })
  34. },
  35. //获取老人健康体检随访记录
  36. getOlderPeopleHealthCheckRecord: function (data) {
  37. return httpRequest.get("doctor/visitDetail/getOlderPeopleHealthCheckRecord", { data: data })
  38. },
  39. //获取第一次肺结核随访记录
  40. getPhthisisFirstCheckRecord: function (data) {
  41. return httpRequest.get("doctor/phthisis/getFirst", { data: data })
  42. },
  43. //保存第一次肺结核随访记录
  44. savePhthisisFirstCheckRecord: function (data) {
  45. return httpRequest.post("doctor/phthisis/saveFirst", { data: data })
  46. },
  47. //保存肺结核患者第n次入户随访记录
  48. savePhthisis:function(data){
  49. return httpRequest.post("doctor/phthisis/saveNTimes",{data:data})
  50. },
  51. //获取肺结核患者第n次入户随访记录
  52. getPhthisis:function(data){
  53. return httpRequest.get("doctor/phthisis/getNTimes", { data: data })
  54. },
  55. //获取当前随访状态信息
  56. getFollowupInfo:function(data){
  57. return httpRequest.get("doctor/followup/findFollowupInfo", { data: data })
  58. },
  59. //完成随访
  60. updateFollowStatus:function(data){
  61. return httpRequest.post("doctor/followup/updateFollowStatus",{data:data})
  62. },
  63. //获取上一次随访内容
  64. getLastVisitRecord:function(data){
  65. return httpRequest.get("/doctor/visitDetail/getLastVisitRecord",{data:data})
  66. }
  67. }
  68. exports.fangshiAPI = fangshiAPI;
  69. })(window)