兰宝车间质量管理系统-前端
疯狂的狮子Li
2024-04-24 e2254651ca3e83f4343c5590b10635331fa801a0
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({