新增添加项目接口

main
wangxiaoshuang 2024-03-26 16:31:50 +08:00
parent 20cbde0348
commit 36746ac4b6
1 changed files with 18 additions and 0 deletions

View File

@ -26,4 +26,22 @@ export function getPatientJoinedTrialList(data) {
method: 'post',
data
})
}
// 获取患者列表(下拉框)
export function getTrialSubejctSelectList(data) {
return request({
url: '/Patient/getTrialSubejctSelectList',
method: 'post',
data
})
}
// 患者与受试者建立绑定关系
export function addSubjectPatientBinding(data) {
return request({
url: '/Patient/addSubjectPatientBinding',
method: 'post',
data
})
}