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

20 lines
447 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
// 获取当前预约详情
2024-02-05 11:27:19 +08:00
export function getScreening(cardNo) {
2023-10-10 14:01:25 +08:00
return request({
2024-02-05 11:27:19 +08:00
url: `/nurseApplet/screening/record/getScreening/${cardNo}`,
method: 'GET',
header: {
region: uni.getStorageSync('region'),
}
2023-10-10 14:01:25 +08:00
})
}
2023-09-22 16:22:19 +08:00