12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- (function(){
- var orderApis = {
- getOrderList: function(data){
- return APIService.httpGet('doctor/prescriptionInfo/getDoctorPrescriptionExpressage', data);
- },
- getOrderListTableAjaxObj: { //表格数据获取时,使用的ajax请求配置
- method: 'get',
- url: APIService.server + 'doctor/prescriptionInfo/getDoctorPrescriptionExpressage',
- contentType: "application/json",
- dataType: "json",
- ajaxOptions: {
- beforeSend: function(request) {
- var userAgent = APIService.userAgent;
- userAgent = JSON.stringify(userAgent);
- request.setRequestHeader("userAgent", userAgent);
- }
- }
- },
- 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);
- },
- getHealthDoctorTableAjaxObj: { //表格数据获取时,使用的ajax请求配置
- method: 'get',
- url: APIService.server + 'doctor/prescriptionInfo/getHDoctorInDoctorHosiptal',
- contentType: "application/json",
- dataType: "json",
- ajaxOptions: {
- beforeSend: function(request) {
- var userAgent = APIService.userAgent;
- userAgent = JSON.stringify(userAgent);
- request.setRequestHeader("userAgent", userAgent);
- }
- }
- },
- distributeHealthDoctor: function(data){
- return APIService.httpPost('doctor/prescriptionInfo/distributionHealthDoctor', data);
- },
- //健管师页面接口
- getHOrderList: function(data){
- return APIService.httpGet('doctor/prescriptionInfo/getHDoctorPrescriptionExpressage', data);
- },
- getHOrderListTableAjaxObj: { //表格数据获取时,使用的ajax请求配置
- method: 'get',
- url: APIService.server + 'doctor/prescriptionInfo/getHDoctorPrescriptionExpressage',
- contentType: "application/json",
- dataType: "json",
- ajaxOptions: {
- beforeSend: function(request) {
- var userAgent = APIService.userAgent;
- userAgent = JSON.stringify(userAgent);
- request.setRequestHeader("userAgent", userAgent);
- }
- }
- },
- getHFilterInfo: function(){
- return APIService.httpGet('doctor/prescriptionInfo/getPrescriptionExpressageFilter');
- },
- getHOrderListCount: function(data){
- return APIService.httpGet('doctor/prescriptionInfo/getHDoctorPrescriptionExpressageTotal',data);
- }
- };
- window.orderAPI = orderApis;
- })(jQuery)
|