完成验证码及登录功能

This commit is contained in:
橙子
2023-02-04 18:06:42 +08:00
parent cfd25b0a8d
commit b01d242cbc
276 changed files with 24201 additions and 22 deletions

View 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'
})
}