xinelu-applet-ui/api/pagesB/screeningRecord/screeningRecord.js

14 lines
440 B
JavaScript
Raw Normal View History

2024-06-25 18:25:50 +08:00
import request from "@/api/request.js"
2023-10-08 15:54:14 +08:00
// 获取筛查结果列表
2024-02-05 17:03:33 +08:00
export function screeningResultList(patientId,identity,pageNum,pageSize) {
2023-10-08 15:54:14 +08:00
return request({
2024-02-05 17:03:33 +08:00
url: `/nurseApplet/screening/record/record?patientId=${patientId}&identity=${identity}&pageNum=${pageNum}&pageSize=${pageSize}`,
2023-10-12 13:39:34 +08:00
method: 'GET',
header: {
2024-02-05 17:03:33 +08:00
Authorization: 'Bearer' + ' ' + uni.getStorageSync('token'),
region: uni.getStorageSync('region'),
2023-10-12 13:39:34 +08:00
},
2023-10-08 15:54:14 +08:00
})
2023-10-12 13:39:34 +08:00
}