完善北3面板
This commit is contained in:
@@ -42,6 +42,8 @@ import type {
|
||||
UserOwnedMenusResponse,
|
||||
InputB1ServiceBoard,
|
||||
B1ServiceBoardResponse,
|
||||
InputNorth3ServiceBoard,
|
||||
North3ServiceBoardResponse,
|
||||
} from './types';
|
||||
|
||||
/**
|
||||
@@ -346,3 +348,15 @@ export const getB1ServiceBoard = (
|
||||
).then(res => res.data);
|
||||
};
|
||||
|
||||
/**
|
||||
* 北3服务看板
|
||||
*/
|
||||
export const getNorth3ServiceBoard = (
|
||||
data: InputNorth3ServiceBoard = {}
|
||||
): Promise<North3ServiceBoardResponse> => {
|
||||
return request.post<North3ServiceBoardResponse>(
|
||||
`${MEDICAL_EXAM_BASE_PATH}/north3-service-board`,
|
||||
data
|
||||
).then(res => res.data);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user