2023-10-11 15:13:02 +08:00
|
|
|
import request from "../../request.js"
|
|
|
|
|
// 获取项目
|
2023-11-09 09:26:50 +08:00
|
|
|
export function projectTypedata(patientId) {
|
2023-10-11 15:13:02 +08:00
|
|
|
return request({
|
2023-11-09 09:26:50 +08:00
|
|
|
url: `/nurseApplet/screening/project/list?patientId=${patientId}`,
|
2023-10-27 14:55:48 +08:00
|
|
|
method: 'GET',
|
|
|
|
|
header: {
|
|
|
|
|
Authorization: 'Bearer' + ' ' + uni.getStorageSync('token')
|
|
|
|
|
},
|
2023-10-11 15:13:02 +08:00
|
|
|
})
|
|
|
|
|
}
|