55 lines
846 B
JavaScript
55 lines
846 B
JavaScript
import request from '@/utils/request'
|
|
|
|
// 查询岗位列表
|
|
export function listPost(query) {
|
|
return request({
|
|
url: '/post',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|
|
// 查询岗位详细
|
|
export function getPost(postId) {
|
|
return request({
|
|
url: '/post/' + postId,
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
// 新增岗位
|
|
export function addPost(data) {
|
|
return request({
|
|
url: '/post',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 修改岗位
|
|
export function updatePost(data) {
|
|
return request({
|
|
url: `/post/${data.id}`,
|
|
method: 'put',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 删除岗位
|
|
export function delPost(postId) {
|
|
return request({
|
|
url: `/post`,
|
|
method: 'delete',
|
|
params:{id:postId}
|
|
})
|
|
}
|
|
|
|
// 获取角色选择框列表
|
|
export function postOptionselect() {
|
|
return request({
|
|
url: '/post',
|
|
method: 'get'
|
|
})
|
|
|
|
}
|