兰宝车间质量管理系统-前端
deary
2024-05-17 0c620ef5b43f0277f72a32ab5a6cf20118fc1f1b
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
    }
  });
}