import { defHttp } from '/@/utils/http/axios' import { getMenuListResultModel } from './model/menuModel' enum Api { GetMenuList = '/spUser/getCurrentRes', } /** * @description: Get user menu based on id */ export const getMenuList = () => { return defHttp.get( { url: Api.GetMenuList }, { isTransformResponse: true }, ) }