59 lines
932 B
JavaScript
59 lines
932 B
JavaScript
import request from '@/utils/request'
|
|
|
|
// 查询岗位列表
|
|
export function listPost(query) {
|
|
return request({
|
|
url: '/post/pageList',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|
|
// 查询岗位详细
|
|
export function getPost(postId) {
|
|
return request({
|
|
url: '/post/getById/' + postId,
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
// 新增岗位
|
|
export function addPost(data) {
|
|
return request({
|
|
url: '/post/add',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 修改岗位
|
|
export function updatePost(data) {
|
|
return request({
|
|
url: '/post/update',
|
|
method: 'put',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 删除岗位
|
|
export function delPost(postId) {
|
|
if("string"==typeof(postId))
|
|
{
|
|
postId=[postId];
|
|
}
|
|
return request({
|
|
url: '/post/delList',
|
|
method: 'delete',
|
|
data:postId
|
|
})
|
|
}
|
|
|
|
// 获取角色选择框列表
|
|
export function postOptionselect() {
|
|
return request({
|
|
url: '/post/getList',
|
|
method: 'get'
|
|
})
|
|
|
|
}
|