You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
443 B
18 lines
443 B
import { defHttp } from '/@/utils/http/axios';
|
|
|
|
import { getMenuListByIdParams, getMenuListByIdParamsResultModel } from './model/menuModel';
|
|
|
|
enum Api {
|
|
GetMenuListById = '/getMenuListById',
|
|
}
|
|
|
|
/**
|
|
* @description: 根据id获取用户菜单
|
|
*/
|
|
export function getMenuListById(params: getMenuListByIdParams) {
|
|
return defHttp.request<getMenuListByIdParamsResultModel>({
|
|
url: Api.GetMenuListById,
|
|
method: 'GET',
|
|
params,
|
|
});
|
|
}
|
|
|