// 参数接口 // 响应接口 import { get, post } from "@/utils/request"; /** * 获取服务器时间 */ export const xqgwFindAllApi = async () => { return await get("/api/xqgw/findAll"); }; export const xqxjFindAllApi = async () => { return await get("/api/xqxj/findAll"); }; export const findAllNjBjTreeApi = async () => { return await get("/api/nj/findAllNjBjTree"); }; export const jsConfirmJsDataApi = async (params: any) => { return await post("/api/js/confirmJsData", params); };