zhxy-jsd/src/api/base/zwApi.ts
2025-12-24 19:42:28 +08:00

90 lines
533 B
TypeScript

import { get } from "@/utils/request";
/**
* 根据职务类型获取职务列表
* @param zwlx 职务类型:党政职务、其他职务
*/
export const getZwListByLx = (zwlx: string) => {
return get("/api/zw/getListByLx", { zwlx });
};
/**
* 根据ID查询职务
*/
export const findZwById = (id: string) => {
return get("/api/zw/findById", { id });
};
/**
* 查询所有职务
*/
export const findAllZw = () => {
return get("/api/zw/findAll");
};