添加加项接口
This commit is contained in:
@@ -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-生成扫码支付二维码
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user