This commit is contained in:
孟帅
2022-11-24 23:37:34 +08:00
parent 4ffe54b6ac
commit 29bda0dcdd
1487 changed files with 97869 additions and 96539 deletions

33
web/src/api/org/dept.ts Normal file
View File

@@ -0,0 +1,33 @@
import { http } from '@/utils/http/axios';
export function getDeptList(params?) {
return http.request({
url: '/dept/list',
method: 'GET',
params,
});
}
export function Edit(params) {
return http.request({
url: '/dept/edit',
method: 'POST',
params,
});
}
export function Status(params) {
return http.request({
url: '/dept/status',
method: 'POST',
params,
});
}
export function Delete(params) {
return http.request({
url: '/dept/delete',
method: 'POST',
params,
});
}