完善B1 面板
This commit is contained in:
@@ -40,6 +40,8 @@ import type {
|
||||
VerificationCodePhoneResponse,
|
||||
InputUserOwnedMenus,
|
||||
UserOwnedMenusResponse,
|
||||
InputB1ServiceBoard,
|
||||
B1ServiceBoardResponse,
|
||||
} from './types';
|
||||
|
||||
/**
|
||||
@@ -332,3 +334,15 @@ export const getUserOwnedMenus = (
|
||||
).then(res => res.data);
|
||||
};
|
||||
|
||||
/**
|
||||
* B1服务看板
|
||||
*/
|
||||
export const getB1ServiceBoard = (
|
||||
data: InputB1ServiceBoard = {}
|
||||
): Promise<B1ServiceBoardResponse> => {
|
||||
return request.post<B1ServiceBoardResponse>(
|
||||
`${MEDICAL_EXAM_BASE_PATH}/b1-service-board`,
|
||||
data
|
||||
).then(res => res.data);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user