功能变化: 菜单管理懒加载

This commit is contained in:
猿小天
2023-02-08 10:46:55 +08:00
parent 8431e9a87e
commit 507f40ae3d
3 changed files with 5 additions and 5 deletions

View File

@@ -6,12 +6,12 @@ export function GetList(query: PageQuery) {
return request({
url: apiPrefix,
method: 'get',
data: query,
params: query,
});
}
export function GetObj(id: InfoReq) {
return request({
url: apiPrefix + id,
url: apiPrefix + id+'/',
method: 'get',
});
}