123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- (function(exports) {
- var rehaAPI = {
- //获取日历列表
- calendarPlanDetail: function(data) {
- return httpRequest.get("doctor/specialist/rehabilitation/calendarPlanDetail",{data:data})
- },
- //获取列表
- calendarPlanDetailList: function(data) {
- return httpRequest.get("doctor/specialist/rehabilitation/calendarPlanDetailList",{data:data})
- },
- serviceItemList:function(data){
- return httpRequest.get("doctor/specialist/rehabilitation/serviceItemList",{data:data})
- },
- serviceItem:function(data){
- return httpRequest.get("doctor/specialist/rehabilitation/serviceItem",{data:data})
- },
- //获取医生二维码
- createServiceQrCode: function(data){
- return httpRequest.post('doctor/specialist/rehabilitation/createServiceQrCode',{data:data})
- },
- // 居民扫码后验证是否是关联的居民扫码(居民端)
- checkAfterQrCode: function(data){
- return httpRequest.post('patient/specialist/rehabilitation/checkAfterQrCode',{data:data})
- },
- upload:function(file){
- return httpRequest.post('upload/fastDFSImag',{data: file,contentType: false,
- cache: false,
- processData: false})
- },
- updateNoteAndImageRehabilitationOperate:function(data){
- return httpRequest.post('doctor/specialist/rehabilitation/updateNoteAndImageRehabilitationOperate',{data:data})
- },
- // 新增operateRecodr
- saveRehabilitationOperateRecord:function(data){
- return httpRequest.post('doctor/specialist/rehabilitation/saveRehabilitationOperateRecord',{data:data})
- },
- // 康复服务套餐管理-获取康复服务套餐模板列表
- findTemplateList:function(data){
- return httpRequest.get("doctor/specialist/rehabilitationPlan/findTemplateList",{data:data})
- },
- // 康复服务套餐管理-获取机构服务项目列表
- findServiceItemsByHospital:function(data){
- return httpRequest.get("doctor/specialist/hospitalServiceItem/findServiceItemsByHospital",{data:data})
- },
- createTemplate:function(data){
- return httpRequest.post('doctor/specialist/rehabilitationPlan/createTemplate',{data:data})
- },
- createTemplateDetail:function(data){
- return httpRequest.post('doctor/specialist/rehabilitationPlan/createTemplateDetail',{data:data})
- },
- findTemplateDetail:function(data){
- return httpRequest.get("doctor/specialist/rehabilitationPlan/findTemplateDetail",{data:data})
- },
- deleteTemplate:function(data){
- return httpRequest.post('doctor/specialist/rehabilitationPlan/deleteTemplate',{data:data})
- },
- selectByIds:function(data){
- return httpRequest.get("doctor/specialist/hospitalServiceItem/selectByIds",{data:data})
- },
-
-
-
-
- }
- exports.rehaAPI = rehaAPI;
- })(window)
|