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