healthy-control-api.js 1.0 KB

12345678910111213141516171819202122232425262728
  1. (function(exports) {
  2. var healthAPI = {
  3. getlist:function(data){
  4. return httpRequest.get("doctor/guidance_temp/list", {data: data})
  5. },
  6. getSpecialList:function(data){
  7. return httpRequest.get("doctor/specialist/rehabilitation/findRehabilitationPlanList", {data: data})
  8. },
  9. PlanDetailList:function(data){
  10. return httpRequest.get("doctor/specialist/rehabilitation/findRehabilitationPlanDetailList",{data: data})
  11. },
  12. getSpecialDisease:function(data){
  13. return httpRequest.get("doctor/screen/getSpecialDisease",{data: data})
  14. },
  15. updatePlanStatusById:function(data){
  16. return httpRequest.post("doctor/specialist/rehabilitation/updatePlanStatusById",{data: data})
  17. },
  18. doctorBaseinfo: function(data){
  19. return httpRequest.get('doctor/baseinfo',{data:data})
  20. },
  21. //获取医生团队信息
  22. getDoctorTeam: function(uid){
  23. return httpRequest.get('doctor/admin-teams/team/'+uid+'/teams')
  24. },
  25. }
  26. exports.healthAPI = healthAPI;
  27. })(window)