mirror of
https://gitee.com/likeadmin/likeadmin_java.git
synced 2026-05-18 06:58:20 +08:00
修复bug
This commit is contained in:
@@ -19,3 +19,8 @@ export function deptEdit(params: any) {
|
||||
export function deptDelete(params: any) {
|
||||
return request.post({ url: '/system/dept/del', params })
|
||||
}
|
||||
|
||||
// 部门详情
|
||||
export function deptDetail(params?: any) {
|
||||
return request.get({ url: '/system/dept/detail', params })
|
||||
}
|
||||
|
||||
@@ -23,3 +23,8 @@ export function postEdit(params: any) {
|
||||
export function postDelete(params: any) {
|
||||
return request.post({ url: '/system/post/del', params })
|
||||
}
|
||||
|
||||
// 岗位详情
|
||||
export function postDetail(params: any) {
|
||||
return request.get({ url: '/system/post/detail', params })
|
||||
}
|
||||
|
||||
@@ -19,3 +19,8 @@ export function menuEdit(params: Record<string, any>) {
|
||||
export function menuDelete(params: Record<string, any>) {
|
||||
return request.post({ url: '/system/menu/del', params })
|
||||
}
|
||||
|
||||
// 菜单删除
|
||||
export function menuDetail(params: Record<string, any>) {
|
||||
return request.get({ url: '/system/menu/detail', params })
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user