2024-06-25 18:25:50 +08:00
|
|
|
import request from "@/api/request.js"
|
2023-10-11 15:13:02 +08:00
|
|
|
// 获取项目
|
2024-02-05 17:03:33 +08:00
|
|
|
export function getAppointProject(patientId,identity) {
|
2023-10-11 15:13:02 +08:00
|
|
|
return request({
|
2024-02-05 17:03:33 +08:00
|
|
|
url: `/nurseApplet/screening/project/getAppointProject?patientId=${patientId}&identity=${identity}`,
|
2023-10-27 14:55:48 +08:00
|
|
|
method: 'GET',
|
|
|
|
|
header: {
|
2024-02-05 17:03:33 +08:00
|
|
|
Authorization: 'Bearer' + ' ' + uni.getStorageSync('token'),
|
|
|
|
|
region: uni.getStorageSync('region'),
|
2023-10-27 14:55:48 +08:00
|
|
|
},
|
2023-10-11 15:13:02 +08:00
|
|
|
})
|
|
|
|
|
}
|