AIzhushou-screen/src/api/modules/test.ts

15 lines
472 B
TypeScript
Raw Normal View History

2024-05-31 18:55:17 +08:00
import { GET, POST, FILE, FILEPOST, PUT, GETNOBASE } from "../api";
export const AdminPCIndex = (param: any = {}) => {
return GET("/api/TeacherManagement/AdminPCIndex", param);
};
//主页 今日缴费情况
export const WeekPay = (param: any = {}) => {
return GET("/api/TeacherManagement/WeekPay", param);
};
// 专业报道
export const StatisticsReportedRanking = (param: any = {}) => {
return GET("/api/TeacherManagement/StatisticsReportedRanking", param);
};