1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- (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
- saveRehabilitationOperateRecodr:function(data){
- return httpRequest.post('doctor/specialist/rehabilitation/saveRehabilitationOperateRecodr',{data:data})
- },
-
-
-
-
-
- }
- exports.rehaAPI = rehaAPI;
- })(window)
|