record-api.js 822 B

12345678910111213141516171819202122232425
  1. (function(exports) {
  2. var recordAPI = {
  3. //咨询
  4. consultList: function(data) {
  5. return httpRequest.post("doctor/consult/list_by_team", {data: data})
  6. },
  7. //咨询
  8. guidanceList: function(data) {
  9. return httpRequest.post("doctor/health/guidance/list_by_team", {data: data})
  10. },
  11. educationList:function(data){
  12. return httpRequest.post("doctor/jkEdu/article/PC/fetchPatientArticlePushedList", {data: data})
  13. },
  14. followUpList:function(data){
  15. return httpRequest.post("doctor/followup/list_by_team", {data: data})
  16. },
  17. toBeReservedList:function(data){
  18. return httpRequest.post("third/guahao/GetPatientReservationList", {data: data})
  19. },
  20. getStatistics:function(data){
  21. return httpRequest.post("doctor/patient/service/statistics", {data: data})
  22. },
  23. }
  24. exports.recordAPI = recordAPI;
  25. })(window)