// 参数接口 // 响应接口 import { get, post } from "@/utils/request"; export const loginRegisterJzApi = async (params: any) => { return await post("/open/login/registerJz", params); }; export const xkAddXkqdApi = async (params: any) => { return await post("/mobile/xk/addXkqd", params); }; 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); }; export const xkgzsApi = async (params: any) => { return await get("/api/gzs/findPage", params); }; export const xkxkbmInfoApi = async (params: any) => { return await get("/mobile/xk/xkbmInfo", params); }; export const xkqddeleteApi = async (params: any) => { return await post("/api/xkqd/delete?ids=" + params.ids); };