// 参数接口 // 响应接口 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 kmFindAllApi = async () => { return await get("/api/km/findAll"); }; export const findAllXxXqNjTree = async () => { return await get("/api/nj/findAllXxXqNjTree"); }; export const findAllNjBjTree = async () => { return await get("/api/nj/findAllNjBjTree"); }; export const jsConfirmJsDataApi = async (params: any) => { return await post("/api/js/confirmJsData", params); }; export const jsdFindPageTaskApi = async (params: any) => { return await get("/api/jsd/findPageTask", params); }; export const rwflFindRwlxsByRwId = async (params: any) => { return await get("/api/rwlx/findRwlxsByRwId", params); }; export const rwzxSaveApi = async (params: any) => { return await post("/api/rwzx/save", params); }; export const rwzxExecutedInfoByRwIdAndJsApi = async (params: any) => { return await get("/api/rwzx/executedInfoByRwIdAndJs", params); }; export const rwFindInfoByRwId = async (params: any) => { return await get("/api/rw/findInfoByRwId", params); }; export const fractionRuleApi = async () => { return await get( "/api/fractionRule/findAllByItemId?itemId=CDFDED2A704F46E2A4D7E8816968BD23" ); }; export const fractionRuleApi1 = async () => { return await get( "/api/fractionRule/findAllByItemId?itemId=B96A0FA22C414F71A3E1CDCA7E206B10" ); }; // 查询教师信息 export const jsdfindJsByPhoneApi = async (params: any) => { return await get("/api/js/findJsByPhone", params); }; // 选课列表 export const jsdXkListApi = async (params: any) => { return await get("/mobile/js/xk/list", params); }; // 选课列表 export const jsdXkkcSaveApi = async (params: any) => { return await post("/api/xkkc/save", params); }; // 选课学生列表 export const jsdXkXsListApi = async (params: any) => { return await get("/mobile/js/xkxs/list", params); }; export const mobilejlstudentListApi = async (params: any) => { return await get("/mobile/jl/studentList", params); }; export const mobilejllistApi = async (params: any) => { const res = await get("/mobile/jl/list", params); return res.result; }; // 提交点名信息 export const jsdXkdmListApi = async (params: any) => { return await post("/mobile/js/xkdm/add", params); };