12345678910111213141516171819202122232425262728293031323334 |
- (function(){
- var orderApis = {
- getOrderList: function(data){
- return APIService.httpGet('doctor/prescriptionInfo/getDoctorPrescriptionExpressage', data);
- },
- getFilterInfo: function(){
- return APIService.httpGet('doctor/prescriptionInfo/getPrescriptionExpressageAsdoctorFilter');
- },
- getHospitalList: function (data){
- return APIService.httpGet('doctor/prescriptionInfo/getHospitalListTitle', data);
- },
- getOrderListCount: function(data){
- return APIService.httpGet('doctor/prescriptionInfo/getDoctorPrescriptionExpressageTotal', data);
- },
- getHealthDoctor: function(data){
- return APIService.httpGet('doctor/prescriptionInfo/getHDoctorInDoctorHosiptal', data);
- },
- distributeHealthDoctor: function(data){
- return APIService.httpPost('doctor/prescriptionInfo/distributionHealthDoctor', data);
- },
- //健管师页面接口
- getHOrderList: function(data){
- return APIService.httpGet('doctor/prescriptionInfo/getHDoctorPrescriptionExpressage', data);
- },
- getHFilterInfo: function(){
- return APIService.httpGet('doctor/prescriptionInfo/getPrescriptionExpressageFilter');
- },
- getHOrderListCount: function(data){
- return APIService.httpGet('doctor/prescriptionInfo/getHDoctorPrescriptionExpressageTotal',data);
- }
- };
- window.orderAPI = orderApis;
- })(jQuery)
|