healthy-control-api.js 834 B

12345678910111213141516171819202122
  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. }
  19. exports.healthAPI = healthAPI;
  20. })(window)