Merge branch 'dev-20250930' of http://25.13.9.101:9000/K17_AITS/tra-app into dev-20250930

This commit is contained in:
田岩
2025-08-19 20:23:20 +08:00
39 changed files with 4812 additions and 32 deletions
+38
View File
@@ -0,0 +1,38 @@
import request from '@/api/request'
const base_url = '/traapp'
// 学习时长
export const getLeaderBoardStdyTmApi = (data) => {
return request({
url: base_url + '/myLeaderBoard/stdyTmLen',
method: 'post',
data
});
};
// 练习次数
export const getLeaderBoardPractCntApi = (data) => {
return request({
url: base_url + '/myLeaderBoard/practCnt',
method: 'post',
data
});
};
// 考试次数
export const getLeaderBoardExamCntApi = (data) => {
return request({
url: base_url + '/myLeaderBoard/examCnt',
method: 'post',
data
});
};
// 通关课程数
export const getLeaderBoardCrsCntApi = (data) => {
return request({
url: base_url + '/myLeaderBoard/crsCnt',
method: 'post',
data
});
};