添加搜索体检加项接口
This commit is contained in:
@@ -20,6 +20,8 @@ import type {
|
||||
TongyishuSignSubmitResponse,
|
||||
InputCustomerDetailEdit,
|
||||
CustomerDetailEditResponse,
|
||||
InputPhysicalExamAddItem,
|
||||
PhysicalExamAddItemListResponse,
|
||||
} from './types';
|
||||
|
||||
/**
|
||||
@@ -170,3 +172,15 @@ export const editCustomerDetail = (
|
||||
).then(res => res.data);
|
||||
};
|
||||
|
||||
/**
|
||||
* 搜索体检加项
|
||||
*/
|
||||
export const searchPhysicalExamAddItem = (
|
||||
data: InputPhysicalExamAddItem
|
||||
): Promise<PhysicalExamAddItemListResponse> => {
|
||||
return request.post<PhysicalExamAddItemListResponse>(
|
||||
`${MEDICAL_EXAM_BASE_PATH}/add-item-list`,
|
||||
data
|
||||
).then(res => res.data);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user