// 参数接口 // 响应接口 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); }; /** * 当前学期排课公共配置(排课设置、排课周次、排课时间) */ export const cmsArticlePageApi = async (params: any) => { return await get("/api/cms/article/findPage", params); }; /** * 当前学期排课公共配置(排课设置、排课周次、排课时间) */ export const dqpkApi = async () => { return await get("/mobile/jz/pkkb/dqpk" ); }; /** * 单日的排课课表 */ export const drpkkbApi = async (params: any) => { return await get("/mobile/jz/pkkb/drpkkb", params); }; /** * 查询学生选课列表 */ export const xsXkListApi = async (params: any) => { return await get("/mobile/jz/xsxk/list", params); };