mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-06-28 11:22:00 +08:00
39 lines
1.1 KiB
TypeScript
39 lines
1.1 KiB
TypeScript
import { useAxios } from '@/hooks/web/useAxios'
|
|
import type { PostVO, PostPageReqVO, PostExportReqVO } from './types'
|
|
|
|
const request = useAxios()
|
|
|
|
// 查询岗位列表
|
|
export const getPostPageApi = async (params: PostPageReqVO) => {
|
|
return await request.get({ url: '/system/post/page', params })
|
|
}
|
|
|
|
// 获取岗位精简信息列表
|
|
export const listSimplePostsApi = async () => {
|
|
return await request.get({ url: '/system/post/list-all-simple' })
|
|
}
|
|
// 查询岗位详情
|
|
export const getPostApi = async (id: number) => {
|
|
return await request.get({ url: '/system/post/get?id=' + id })
|
|
}
|
|
|
|
// 新增岗位
|
|
export const createPostApi = async (data: PostVO) => {
|
|
return await request.post({ url: '/system/post/create', data })
|
|
}
|
|
|
|
// 修改岗位
|
|
export const updatePostApi = async (data: PostVO) => {
|
|
return await request.put({ url: '/system/post/update', data })
|
|
}
|
|
|
|
// 删除岗位
|
|
export const deletePostApi = async (id: number) => {
|
|
return await request.delete({ url: '/system/post/delete?id=' + id })
|
|
}
|
|
|
|
// 导出岗位
|
|
export const exportPostApi = async (params: PostExportReqVO) => {
|
|
return await request.download({ url: '/system/post/export', params })
|
|
}
|