diff --git a/src/api/inspection.js b/src/api/inspection.js index b33a9ae..09c4f44 100644 --- a/src/api/inspection.js +++ b/src/api/inspection.js @@ -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 + }) } \ No newline at end of file