修复项目名称显示问题
This commit is contained in:
@@ -10,6 +10,8 @@ import type {
|
||||
PhysicalExamCustomerListResponse,
|
||||
InputPhysicalExamProgressDetail,
|
||||
PhysicalExamProgressDetailResponse,
|
||||
InputPhysicalExamProgress,
|
||||
PhysicalExamProgressResponse,
|
||||
InputCustomerDetail,
|
||||
CustomerDetailResponse,
|
||||
InputMedicalExamCenterSignIn,
|
||||
@@ -142,6 +144,18 @@ export const getPhysicalExamProgressDetail = (
|
||||
).then(res => res.data);
|
||||
};
|
||||
|
||||
/**
|
||||
* 体检进度
|
||||
*/
|
||||
export const getPhysicalExamProgress = (
|
||||
data: InputPhysicalExamProgress
|
||||
): Promise<PhysicalExamProgressResponse> => {
|
||||
return request.post<PhysicalExamProgressResponse>(
|
||||
`${MEDICAL_EXAM_BASE_PATH}/progress`,
|
||||
data
|
||||
).then(res => res.data);
|
||||
};
|
||||
|
||||
/**
|
||||
* 客户详情
|
||||
*/
|
||||
|
||||
@@ -223,6 +223,19 @@ export interface OutputPhysicalExamProgressDetail {
|
||||
*/
|
||||
export type PhysicalExamProgressDetailResponse = CommonActionResult<OutputPhysicalExamProgressDetail>;
|
||||
|
||||
/**
|
||||
* 体检进度入参
|
||||
*/
|
||||
export interface InputPhysicalExamProgress {
|
||||
/** 体检ID */
|
||||
physical_exam_id: number;
|
||||
}
|
||||
|
||||
/**
|
||||
* 体检进度接口返回
|
||||
*/
|
||||
export type PhysicalExamProgressResponse = CommonActionResult<PhysicalExamProgressItem[]>;
|
||||
|
||||
/**
|
||||
* 客户详情入参
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user