兰宝车间质量管理系统-前端
疯狂的狮子Li
2025-02-07 b95a49c7d74e5c7f45cd7c65f45502edf7f203dd
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
    }
  });
}