123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- (function (exports) {
- var fangshiAPI = {
- // 签到详情
- findByFollowupId: function (data) {
- return httpRequest.get("doctor/followup/findByFollowupId", { data: data })
- },
- //获取孕产妇访视详情
- getPostpartumVisitDetails: function (data) {
- return httpRequest.get("doctor/visitDetail/getPostpartumVisitDetails", { data: data })
- },
- //保存孕产妇访视详情
- savePostpartumVisitDetails: function (data) {
- return httpRequest.post("doctor/visitDetail/savePostpartumVisitDetails", { data: data })
- },
- //保存严重精神障碍患者随访记录
- saveFollowupSevereMentalDisorder: function (data) {
- return httpRequest.post("doctor/visitDetail/saveFollowupSevereMentalDisorder", { data: data })
- },
- //获取严重精神障碍患者随访记录
- getFollowupSevereMentalDisorder: function (data) {
- return httpRequest.get("doctor/visitDetail/getFollowupSevereMentalDisorder", { data: data })
- },
- //获取新生儿家庭访视记录
- getNewbornFamilyVisitRecord: function (data) {
- return httpRequest.get("doctor/visitDetail/getNewbornFamilyVisitRecord", { data: data })
- },
- //保存新生儿家庭访视记录
- saveNewbornFamilyVisitRecord: function (data) {
- return httpRequest.post("doctor/visitDetail/saveNewbornFamilyVisitRecord", { data: data })
- },
- //保存老人健康体检随访记录
- saveOlderPeopleHealthCheckRecord: function (data) {
- return httpRequest.post("doctor/visitDetail/saveOlderPeopleHealthCheckRecord", { data: data })
- },
- //获取老人健康体检随访记录
- getOlderPeopleHealthCheckRecord: function (data) {
- return httpRequest.get("doctor/visitDetail/getOlderPeopleHealthCheckRecord", { data: data })
- },
- }
- exports.fangshiAPI = fangshiAPI;
- })(window)
|