1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- import request from '@/config/axios'
- export interface DeptVO {
- id?: number
- name: string
- parentId: number
- status: number
- sort: number
- leaderUserId: number
- phone: string
- email: string
- }
- export interface DeptPageReqVO {
- name?: string
- status?: number
- }
- // 查询部门(精简)列表
- export const listSimpleDeptApi = async () => {
- return await request.get({ url: '/system/dept/list-all-simple' })
- }
- // 查询部门列表
- export const getDeptPageApi = async (params: DeptPageReqVO) => {
- return await request.get({ url: '/system/dept/list', params })
- }
- // 查询部门详情
- export const getDeptApi = async (id: number) => {
- return await request.get({ url: '/system/dept/get?id=' + id })
- }
- // 新增部门
- export const createDeptApi = async (data: DeptVO) => {
- return await request.post({ url: '/system/dept/create', data: data })
- }
- // 修改部门
- export const updateDeptApi = async (params: DeptVO) => {
- return await request.put({ url: '/system/dept/update', data: params })
- }
- // 删除部门
- export const deleteDeptApi = async (id: number) => {
- return await request.delete({ url: '/system/dept/delete?id=' + id })
- }
|