gaoluyang
3 天以前 2f58128ac3b1c025a32f64016328992bf9bf5b48
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,
  });
}