zhxy-jsd/src/api/base/xkApi.ts

49 lines
1.1 KiB
TypeScript
Raw Normal View History

2025-08-18 20:47:50 +08:00
import { get, post } from "@/utils/request";
/**
*
*/
export const xkListByJsIdApi = async (params: any) => {
return await get("/api/xk/findXkListByJsId", params);
};
/**
*
*/
export const xkkcListByJsIdApi = async (params: any) => {
return await get("/api/xkkc/getXkkcListByJsId", params);
};
/**
* - XkkcApiController.findXkkcList
*/
export const findXkkcListApi = async (params: any) => {
return await get("/api/xkkc/findXkkcList", params);
};
/**
*
*/
export const getXkDmPageApi = async (params: any) => {
return await get('/api/xkDm/findPage', params)
}
/**
*
*/
export const getXkDmXsPageApi = async (params: any) => {
return await get('/api/xkDmXs/findPage', params)
}
// 选课学生列表
export const getWaitDmXsListApi = async (params: any) => {
return await get("/api/xkDmXs/getWaitDmXsList", params);
};
/**
*
*/
export const submitXkDmApi = async (data: any) => {
return await post('/api/xkDm/save', data)
}