order-api.js 1.5 KB

12345678910111213141516171819202122232425262728293031323334
  1. (function(){
  2. var orderApis = {
  3. getOrderList: function(data){
  4. return APIService.httpGet('doctor/prescriptionInfo/getDoctorPrescriptionExpressage', data);
  5. },
  6. getFilterInfo: function(){
  7. return APIService.httpGet('doctor/prescriptionInfo/getPrescriptionExpressageAsdoctorFilter');
  8. },
  9. getHospitalList: function (data){
  10. return APIService.httpGet('doctor/prescriptionInfo/getHospitalListTitle', data);
  11. },
  12. getOrderListCount: function(data){
  13. return APIService.httpGet('doctor/prescriptionInfo/getDoctorPrescriptionExpressageTotal', data);
  14. },
  15. getHealthDoctor: function(data){
  16. return APIService.httpGet('doctor/prescriptionInfo/getHDoctorInDoctorHosiptal', data);
  17. },
  18. distributeHealthDoctor: function(data){
  19. return APIService.httpPost('doctor/prescriptionInfo/distributionHealthDoctor', data);
  20. },
  21. //健管师页面接口
  22. getHOrderList: function(data){
  23. return APIService.httpGet('doctor/prescriptionInfo/getHDoctorPrescriptionExpressage', data);
  24. },
  25. getHFilterInfo: function(){
  26. return APIService.httpGet('doctor/prescriptionInfo/getPrescriptionExpressageFilter');
  27. },
  28. getHOrderListCount: function(data){
  29. return APIService.httpGet('doctor/prescriptionInfo/getHDoctorPrescriptionExpressageTotal',data);
  30. }
  31. };
  32. window.orderAPI = orderApis;
  33. })(jQuery)