15 lines
459 B
JavaScript
15 lines
459 B
JavaScript
import request from "../../request.js"
|
|
// 获取预约列表
|
|
export function getOrderList(patientId,pageNum,pageSize) {
|
|
return request({
|
|
url: `/nurseApplet/screening/record/list?patientId=${patientId}&pageNum=${pageNum}&pageSize=${pageSize}` ,
|
|
// data: data,
|
|
method: 'get'
|
|
})
|
|
}
|
|
// export function inviteFriends(patientId) {
|
|
// return request({
|
|
// url: `/nurseApplet/patientInfo/inviteFriends?inviteId=${patientId}`,
|
|
// method: 'post'
|
|
// })
|
|
// }
|