(function(exports) { var recordAPI = { //咨询 consultList: function(data) { return httpRequest.post("doctor/consult/list_by_team", {data: data}) }, //咨询 guidanceList: function(data) { return httpRequest.post("doctor/health/guidance/list_by_team", {data: data}) }, educationList:function(data){ return httpRequest.post("doctor/jkEdu/article/PC/fetchPatientArticlePushedList", {data: data}) }, followUpList:function(data){ return httpRequest.post("doctor/followup/list_by_team", {data: data}) }, toBeReservedList:function(data){ return httpRequest.post("third/guahao/GetPatientReservationList", {data: data}) }, getStatistics:function(data){ return httpRequest.post("doctor/patient/service/statistics", {data: data}) }, } exports.recordAPI = recordAPI; })(window)