xinelu-applet-ui/api/pages/medicalservice/index.js

17 lines
395 B
JavaScript
Raw Normal View History

2023-09-22 16:22:19 +08:00
import request from "../../request.js"
export function getPoserInfoListByType() {
return request({
url: `/nurseApplet/nearbyNursingStation/getPoserInfoListByType?moduleType=HOME_PAGE_MODULE`,
method: 'GET'
})
}
2023-10-10 14:01:25 +08:00
// 获取当前预约详情
export function getScreening(patientId) {
return request({
url: `/nurseApplet/screening/record/getScreening/${patientId}`,
method: 'GET'
})
}
2023-09-22 16:22:19 +08:00