gaoluyang
2026-06-04 c8c41b2d190962b51d163ae0750a776b3ee283ef
1
2
3
4
5
6
7
8
9
10
import request from "@/utils/request";
 
/** 岗位下拉 GET /system/post/optionselect */
export function findPostOptions(query) {
  return request({
    url: "/system/post/optionselect",
    method: "get",
    params: query,
  });
}