22 lines
625 B
TypeScript
22 lines
625 B
TypeScript
// 参数接口
|
|
|
|
// 响应接口
|
|
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);
|
|
};
|