style: 💄 修改了几处样式

This commit is contained in:
2025-08-22 13:28:30 +08:00
parent cf5f161458
commit bba32ca5fb
5 changed files with 11 additions and 11 deletions

View File

@@ -1,7 +1,7 @@
/* 布局相关样式 */
.app-layout {
display: flex;
min-height: 100vh;
height: 100vh;
width: 100%;
background-color: #f2f3f5;
@@ -13,7 +13,8 @@
/* 主内容区域 */
.main-content {
flex: 1;
overflow: hidden;
height: 100vh;
overflow-y: auto;
transition: margin-left 0.3s ease;
display: flex;
flex-direction: column;

View File

@@ -1,6 +1,5 @@
.company-jobs-page-wrapper {
width: 100%;
height: 100%;
box-sizing: border-box;
padding: 20px;
position: relative;

View File

@@ -10,21 +10,21 @@ export async function getStudyRecordsProgress() {
}
// 获取我的任务
export async function getMyTasks(queryParams = {}) {
export async function getMyTasks(params = {}) {
return request({
url: `/api/tasks/my-tasks`,
method: "GET",
params: queryParams,
params: params,
namespace: "dashboardLoading",
});
}
// 获取当前学生班级排名
export async function getClassRanking(queryParams = {}) {
export async function getClassRanking(params = {}) {
return request({
url: `/api/rankings/class`,
method: "GET",
params: queryParams,
params: params,
namespace: "dashboardLoading",
});
}

View File

@@ -19,11 +19,11 @@ export async function getDashboardStatistics() {
}
// 获取当前学生班级排名
export async function getClassRank(queryParams = {}) {
export async function getClassRank(params = {}) {
return request({
url: `/api/rankings/class`,
method: "GET",
params: queryParams,
params: params,
namespace: "profileLoading",
});
}

View File

@@ -3,9 +3,9 @@ import request from "@/utils/request";
// 获取简历列表
export async function getResumesList(params) {
return request({
url: `/api/resumes/`,
url: `/api/resumes`,
method: "GET",
params,
params: params,
});
}
// 获取简历详情