完善B1 面板

This commit is contained in:
xianyi
2025-12-17 14:10:15 +08:00
parent 1c15d4b892
commit 1adb79ca0e
3 changed files with 117 additions and 36 deletions

View File

@@ -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);
};