添加加项接口

This commit is contained in:
xianyi
2025-12-30 17:54:06 +08:00
parent 59b5cc5b31
commit 586ce25bdc
3 changed files with 114 additions and 24 deletions

View File

@@ -28,6 +28,8 @@ import type {
CustomerDetailEditResponse,
InputPhysicalExamAddItem,
PhysicalExamAddItemListResponse,
InputAddItemCustomerInfo,
AddItemCustomerInfoResponse,
InputPhysicalExamAddOrder,
PhysicalExamQrcodeCreateResponse,
InputOrderPaymentInfo,
@@ -220,6 +222,18 @@ export const searchPhysicalExamAddItem = (
).then(res => res.data);
};
/**
* 获取体检加项客户信息
*/
export const getAddItemCustomerInfo = (
data: InputAddItemCustomerInfo
): Promise<AddItemCustomerInfoResponse> => {
return request.post<AddItemCustomerInfoResponse>(
`${MEDICAL_EXAM_BASE_PATH}/add-item-customer-info`,
data
).then(res => res.data);
};
/**
* Native-生成扫码支付二维码
*/