WXL
2023-12-18 d94d00d2cd9eaf87bb3776f72f8e73410b93cb7a
src/api/system/post.js
@@ -29,8 +29,8 @@
// 修改岗位
export function updatePost(data) {
  return request({
    url: '/system/post',
    method: 'put',
    url: '/system/post/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除岗位
export function delPost(postId) {
  return request({
    url: '/system/post/' + postId,
    method: 'delete'
    url: '/system/post/remove/' + postId,
    method: 'get'
  })
}