添加iPad签到功能
This commit is contained in:
@@ -12,6 +12,8 @@ import type {
|
||||
PhysicalExamProgressDetailResponse,
|
||||
InputCustomerDetail,
|
||||
CustomerDetailResponse,
|
||||
InputMedicalExamCenterSignIn,
|
||||
PhysicalExamSignInResponse,
|
||||
} from './types';
|
||||
|
||||
/**
|
||||
@@ -98,3 +100,15 @@ export const getCustomerDetail = (
|
||||
).then(res => res.data);
|
||||
};
|
||||
|
||||
/**
|
||||
* iPad 体检中心签到
|
||||
*/
|
||||
export const signInMedicalExamCenter = (
|
||||
data: InputMedicalExamCenterSignIn
|
||||
): Promise<PhysicalExamSignInResponse> => {
|
||||
return request.post<PhysicalExamSignInResponse>(
|
||||
`${MEDICAL_EXAM_BASE_PATH}/sign-in`,
|
||||
data
|
||||
).then(res => res.data);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user