添加保存体检客户报告邮寄地址
This commit is contained in:
@@ -52,6 +52,8 @@ import type {
|
||||
ReportSendQRcodeResponse,
|
||||
InputReportSendInfo,
|
||||
ReportSendInfoResponse,
|
||||
InputExpressContact,
|
||||
ReportSendAddressSaveResponse,
|
||||
} from './types';
|
||||
|
||||
/**
|
||||
@@ -416,3 +418,15 @@ export const getReportSendInfo = (
|
||||
).then(res => res.data);
|
||||
};
|
||||
|
||||
/**
|
||||
* 保存体检客户报告邮寄地址
|
||||
*/
|
||||
export const saveReportSendAddress = (
|
||||
data: InputExpressContact
|
||||
): Promise<ReportSendAddressSaveResponse> => {
|
||||
return request.post<ReportSendAddressSaveResponse>(
|
||||
`${MEDICAL_EXAM_BASE_PATH}/report-send-address-save`,
|
||||
data
|
||||
).then(res => res.data);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user