12345678910111213141516171819202122232425262728 |
- (function(exports) {
- var healthAPI = {
- getlist:function(data){
- return httpRequest.get("doctor/guidance_temp/list", {data: data})
- },
- getSpecialList:function(data){
- return httpRequest.get("doctor/specialist/rehabilitation/findRehabilitationPlanList", {data: data})
- },
- PlanDetailList:function(data){
- return httpRequest.get("doctor/specialist/rehabilitation/findRehabilitationPlanDetailList",{data: data})
- },
- getSpecialDisease:function(data){
- return httpRequest.get("doctor/screen/getSpecialDisease",{data: data})
- },
- updatePlanStatusById:function(data){
- return httpRequest.post("doctor/specialist/rehabilitation/updatePlanStatusById",{data: data})
- },
- doctorBaseinfo: function(data){
- return httpRequest.get('doctor/baseinfo',{data:data})
- },
- //获取医生团队信息
- getDoctorTeam: function(uid){
- return httpRequest.get('doctor/admin-teams/team/'+uid+'/teams')
- },
- }
- exports.healthAPI = healthAPI;
- })(window)
|