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

12 lines
374 B
JavaScript
Raw Normal View History

2024-06-25 18:25:50 +08:00
import request from "@/api/request.js"
2023-10-10 14:01:25 +08:00
// 获取预约列表
2024-02-05 17:06:33 +08:00
export function getOrderList(patientId,identity,pageNum,pageSize) {
2023-10-10 14:01:25 +08:00
return request({
2024-02-05 17:06:33 +08:00
url: `/nurseApplet/screening/record/list?patientId=${patientId}&identity=${identity}&pageNum=${pageNum}&pageSize=${pageSize}` ,
2023-10-10 14:01:25 +08:00
// data: data,
2024-02-05 11:27:19 +08:00
method: 'get',
header: {
region: uni.getStorageSync('region'),
}
2023-10-10 14:01:25 +08:00
})
2024-05-30 08:59:03 +08:00
}