新增-系统设置-菜单权限-角色权限页面

This commit is contained in:
啊俊
2021-07-20 22:53:08 +08:00
parent 9542345b54
commit 54e68db0c2
7 changed files with 527 additions and 2 deletions

11
src/api/system/role.ts Normal file
View File

@@ -0,0 +1,11 @@
import http from '@/utils/http/axios'
/**
* @description: 角色列表
*/
export function getRoleList() {
return http.request({
url: '/role/list',
method: 'GET'
})
}