zhxy-jzd/src/api/base/server.ts

22 lines
625 B
TypeScript
Raw Normal View History

2025-04-30 01:43:23 +08:00
// 参数接口
// 响应接口
2025-05-16 16:16:41 +08:00
import { get, post } from "@/utils/request";
2025-04-30 01:43:23 +08:00
2025-05-16 16:16:41 +08:00
export const loginRegisterJzApi = async (params: any) => {
return await post("/open/login/registerJz", params);
2025-04-30 01:43:23 +08:00
};
2025-05-16 16:16:41 +08:00
export const xkAddXkqdApi = async (params: any) => {
return await post("/mobile/xk/addXkqd", params);
2025-04-30 01:43:23 +08:00
};
2025-05-16 16:16:41 +08:00
export const xkListApi = async (params: any) => {
return await get("/mobile/xk/list", params);
};
export const xkXkqdApi = async (params: any) => {
return await get("/mobile/xk/xkqd", params);
};
export const kcjhFindKcjhByKcIdApi = async (params: any) => {
return await get("/api/kcjh/findKcjhByKcId", params);
2025-04-30 01:43:23 +08:00
};