yht2016 4 лет назад
Родитель
Сommit
f986f4ecaa
1 измененных файлов с 5 добавлено и 1 удалено
  1. 5 1
      api/rehabilitation-api.js

+ 5 - 1
api/rehabilitation-api.js

@ -160,7 +160,11 @@
		// 根据患者身份证或社保卡号进行搜索添加出院记录
		getPatientByIdcardOrSsc: function(data){
			return httpRequest.post("doctor/rehabilitation/getPatientByIdcardOrSsc", {data: data})
		}
		},
		// 获取康复计划服务项的指导留言
		selectByGuidance: function(data){
			return httpRequest.get("doctor/specialist/rehabilitation/selectByGuidance", {data: data})
		},
	}
    exports.rehaAPI = rehaAPI;
})(window)