fix Bug or esLink formatting

This commit is contained in:
Ah jung
2021-07-22 13:47:44 +08:00
parent f6be8f521e
commit 7f81152793
172 changed files with 10553 additions and 9031 deletions

View File

@@ -1,24 +1,23 @@
import http from '@/utils/http/axios'
import http from '@/utils/http/axios';
/**
* @description: 根据用户id获取用户菜单
*/
export function adminMenus() {
return http.request({
url: '/menus',
method: 'GET'
})
return http.request({
url: '/menus',
method: 'GET',
});
}
/**
* 获取tree菜单列表
* @param params
*/
export function getMenuList(params) {
return http.request({
url: '/menu/list',
method: 'GET',
params
})
return http.request({
url: '/menu/list',
method: 'GET',
params,
});
}