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,
  });
}