修正删除部门无效问题

This commit is contained in:
Po
2025-12-13 14:49:59 +08:00
parent 8a6e5abf48
commit 2bc8837155

View File

@@ -50,7 +50,7 @@ export function delDept(deptId) {
return request({ return request({
url: `/dept`, url: `/dept`,
method: 'delete', method: 'delete',
params:{id:deptId} params:{ids:deptId}
}) })
} }