兰宝车间质量管理系统-前端
dap
2024-11-14 cdbbca43c4466d36e9cef08b81cb0fe689c6da25
src/api/system/post/index.ts
@@ -19,6 +19,18 @@
  });
}
// 获取岗位选择框列表
export function optionselect(deptId?: number | string, postIds?: (number | string)[]): AxiosPromise<PostVO[]> {
  return request({
    url: '/system/post/optionselect',
    method: 'get',
    params: {
      postIds: postIds,
      deptId: deptId
    }
  });
}
// 新增岗位
export function addPost(data: PostForm) {
  return request({