You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.0 KiB
36 lines
1.0 KiB
6 months ago
|
import request from "@/utils/requset";
|
||
|
|
||
|
// 获取年度比赛和项目
|
||
|
export const getOldRaceList = (params:any) => {
|
||
|
return request({
|
||
|
url: '/annualcompetitionprojectregistration/annualCompetitionProjectRegistration/queryCompInfo4Stu',
|
||
|
method: 'get',
|
||
|
params
|
||
|
})
|
||
|
}
|
||
|
// 查询报名信息
|
||
|
export const getOldRaceInfo = (params:any) => {
|
||
|
return request({
|
||
|
url: '/annualcompetitionprojectregistration/annualCompetitionProjectRegistration/queryTopicById',
|
||
|
method: 'get',
|
||
|
params
|
||
|
})
|
||
|
}
|
||
|
|
||
|
// 查询团队成员列表
|
||
|
export const getTeamList = (params:any) => {
|
||
|
return request({
|
||
|
url: 'annualcompetitionprojectregistration/annualCompetitionProjectRegistration/queryTeamManagementByMainId',
|
||
|
method: 'get',
|
||
|
params
|
||
|
})
|
||
|
}
|
||
|
|
||
|
// 获取指导老师列表
|
||
|
export const getTeacherList = (params:any) => {
|
||
|
return request({
|
||
|
url: 'annualcompetitionprojectregistration/annualCompetitionProjectRegistration/queryInstructorSheetByMainId',
|
||
|
method: 'get',
|
||
|
params
|
||
|
})
|
||
|
}
|