zhangwencui
8 天以前 6739faebc8bac0aa168a6f61573466b1c80bbecd
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,
  });
}