feat: 新增角色管理

This commit is contained in:
2024-04-14 11:31:12 +08:00
parent 98b249a3a2
commit ceef5ceb15
9 changed files with 605 additions and 0 deletions

29
src/apis/system/role.ts Normal file
View File

@@ -0,0 +1,29 @@
import http from '@/utils/http'
import type * as System from './type'
const BASE_URL = '/system/role'
/** @desc 查询角色列表 */
export function listRole(query: System.RoleQuery) {
return http.get<PageRes<System.RoleResp[]>>(`${BASE_URL}`, query)
}
/** @desc 查询角色详情 */
export function getRole(id: string) {
return http.get<System.RoleDetailResp>(`${BASE_URL}/${id}`)
}
/** @desc 新增角色 */
export function addRole(data: any) {
return http.post(`${BASE_URL}`, data)
}
/** @desc 修改角色 */
export function updateRole(data: any, id: string) {
return http.put(`${BASE_URL}/${id}`, data)
}
/** @desc 删除角色 */
export function deleteRole(ids: string | Array<string>) {
return http.del(`${BASE_URL}/${ids}`)
}