完成验证码及登录功能
This commit is contained in:
58
Yi.RuoYi.Vue3/src/api/system/post.js
Normal file
58
Yi.RuoYi.Vue3/src/api/system/post.js
Normal file
@@ -0,0 +1,58 @@
|
||||
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'
|
||||
})
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user