zhxy-jsd/src/api/base/zwApi.ts

90 lines
533 B
TypeScript
Raw Normal View History

2025-11-05 20:29:14 +08:00
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");
};
2025-11-10 16:41:31 +08:00
2025-11-16 21:44:03 +08:00
2025-11-23 19:34:40 +08:00
2025-12-02 20:25:02 +08:00
2025-12-20 21:46:38 +08:00
2025-12-02 20:25:02 +08:00
2025-11-23 19:34:40 +08:00
2025-12-08 20:03:34 +08:00
2025-11-23 19:34:40 +08:00
2025-11-16 21:44:03 +08:00
2025-12-24 19:42:28 +08:00
2025-11-16 21:44:03 +08:00
2025-11-18 15:49:03 +08:00