feat: 🎸 对接了企业岗位的部分信息

This commit is contained in:
2025-08-22 11:41:15 +08:00
parent d0075937e1
commit cf5f161458
14 changed files with 717 additions and 104 deletions

View File

@@ -6,7 +6,7 @@ import StudyStatus from "./components/StudyStatus";
import Rank from "@/components/Rank";
import StageProgress from "@/components/StageProgress";
import TaskList from "./components/TaskList";
import { getClassRanking, getLearningProgressSummary } from "@/services";
import { getClassRanking, getStudyRecordsProgress } from "@/services";
import "./index.css";
const Dashboard = () => {
@@ -14,7 +14,7 @@ const Dashboard = () => {
// 获取整体学习进度
const queryLearningProgressSummary = async () => {
const res = await getLearningProgressSummary({ period: "semester" });
const res = await getStudyRecordsProgress();
console.log("learningProgressSummary", res);
};