guidance-api.js 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. (function(exports) {
  2. var guidanceAPI = {
  3. guidanceTempList: function(data) {
  4. return httpRequest.get("doctor/guidance_temp/list", {data: data})
  5. },
  6. getDoctorTeams: function(data) {
  7. return httpRequest.get("doctor/team/guidance/getDoctorTeams", {data: data})
  8. },
  9. findAllListByPage: function(data) {
  10. return httpRequest.get("doctor/guidance_temp/lable/findAllListByPage", {data: data})
  11. },
  12. getTeamGuidanceLabelList: function(data) {
  13. return httpRequest.get("doctor/team/guidance/getTeamGuidanceLabelList", {data: data})
  14. },
  15. getTeamGuidanceListByLabelWithFilter: function(data) {
  16. return httpRequest.get("doctor/team/guidance/getTeamGuidanceListByLabelWithFilter", {data: data})
  17. },
  18. getTeamGuidanceDetail: function(data) {
  19. return httpRequest.get("doctor/team/guidance/getTeamGuidanceDetail", {data: data})
  20. },
  21. listDetail: function(data) {
  22. return httpRequest.get("doctor/guidance_temp/listDetail", {data: data})
  23. },
  24. findDoctorLeaderTeam: function(data) {
  25. return httpRequest.get("doctor/team/guidance/findDoctorLeaderTeam", {data: data})
  26. },
  27. findAllLabelList: function(data) {
  28. return httpRequest.get("doctor/guidance_temp/lable/findAllList", {data: data})
  29. },
  30. modifyTemplate: function(data) {
  31. return httpRequest.post("doctor/guidance_temp/modify", {data: data})
  32. },
  33. modifyTeamGuidance: function(data) {
  34. return httpRequest.post("doctor/team/guidance/modifyTeamGuidance", {data: data})
  35. },
  36. newTemplate: function(data) {
  37. return httpRequest.post("doctor/guidance_temp/add", {data: data})
  38. },
  39. saveTeamGuidance: function(data) {
  40. return httpRequest.post("doctor/team/guidance/saveTeamGuidance", {data: data})
  41. },
  42. deleteTeamGuidance: function(data) {
  43. return httpRequest.get("doctor/team/guidance/deleteTeamGuidance", {data: data})
  44. },
  45. deleteTemplate: function(data) {
  46. return httpRequest.post("doctor/guidance_temp/delete", {data: data})
  47. },
  48. sendTemplate: function(data) {
  49. return httpRequest.post("doctor/health/guidance/add", {data: data})
  50. },
  51. sendTeamGuidance: function(data) {
  52. return httpRequest.post("doctor/team/guidance/sendTeamGuidance", {data: data})
  53. },
  54. saveRehabilitationOperateRecord: function(data) {
  55. return httpRequest.post("doctor/specialist/rehabilitation/saveRehabilitationOperateRecord", {data: data})
  56. },
  57. }
  58. exports.guidanceAPI = guidanceAPI;
  59. })(window)