|
|
|
@ -253,14 +253,14 @@ |
|
|
|
|
import { mapState, mapMutations } from "vuex"; |
|
|
|
|
import { Loading } from "element-ui"; |
|
|
|
|
import Setting from "@/setting" |
|
|
|
|
import util from "@/libs/util" |
|
|
|
|
import Util from "@/libs/util" |
|
|
|
|
|
|
|
|
|
export default { |
|
|
|
|
name: "match", |
|
|
|
|
data () { |
|
|
|
|
return { |
|
|
|
|
timer: null, |
|
|
|
|
token: util.local.get(Setting.tokenKey), |
|
|
|
|
token: Util.local.get(Setting.tokenKey), |
|
|
|
|
way: 2, |
|
|
|
|
statusList: ["待报名", "取消报名", "马上报名", "报名截止", "进入初赛", "已结束"], |
|
|
|
|
endList: ["报名开始", "报名截止", "报名截止", "竞赛开始", "竞赛结束", ""], |
|
|
|
@ -388,12 +388,11 @@ export default { |
|
|
|
|
sequence: form.sequence || null, |
|
|
|
|
keyWord: this.keyword |
|
|
|
|
} |
|
|
|
|
this.$post(this.api[util.local.get(Setting.tokenKey) ? 'competitionAfterLogin' : 'notLoggedInBeforeStudentEvents'], data).then(async ({ data }) => { |
|
|
|
|
this.$post(this.api[Util.local.get(Setting.tokenKey) ? 'competitionAfterLogin' : 'notLoggedInBeforeStudentEvents'], data).then(async ({ data }) => { |
|
|
|
|
this.listData = data.records |
|
|
|
|
this.totals = data.total |
|
|
|
|
|
|
|
|
|
const res = await this.$get(this.api.getCurrentTime) |
|
|
|
|
this.now = new Date(res.currentTime) |
|
|
|
|
this.now = await Util.getNow() |
|
|
|
|
this.statusInterval() |
|
|
|
|
this.timer = setInterval(() => { |
|
|
|
|
this.now = new Date(this.now.setSeconds(this.now.getSeconds() + 1)) |
|
|
|
@ -455,7 +454,7 @@ export default { |
|
|
|
|
total = startTime - now |
|
|
|
|
break |
|
|
|
|
} else if (now >= startTime && now <= endTime) { // 阶段比赛进行中,显示进入比赛按钮 |
|
|
|
|
if ((item.whetherToSignUp === 0 || !util.local.get(Setting.tokenKey)) && (e.method !== 2 || this.offlineCanEntry(e))) this.$set(item, 'stageName', e.count ? '已提交' : '进入' + e.stageName) // 报名了并且没参加比赛才能进入比赛 |
|
|
|
|
if ((item.whetherToSignUp === 0 || !Util.local.get(Setting.tokenKey)) && (e.method !== 2 || this.offlineCanEntry(e))) this.$set(item, 'stageName', e.count ? '已提交' : '进入' + e.stageName) // 报名了并且没参加比赛才能进入比赛 |
|
|
|
|
this.$set(item, 'endText', '阶段结束') |
|
|
|
|
curStage = e |
|
|
|
|
total = endTime - now |
|
|
|
@ -561,13 +560,13 @@ export default { |
|
|
|
|
// 团队报名提交 |
|
|
|
|
enterSubmit () { |
|
|
|
|
const form = this.enterForm |
|
|
|
|
if (!form.teamId) return util.errorMsg('请选择团队') |
|
|
|
|
if (!form.invitationCode) return util.errorMsg('请输入团队邀请码') |
|
|
|
|
if (this.curItem.isNeedCode && !form.registrationInvitationCode) return util.errorMsg('请输入大赛邀请码') |
|
|
|
|
if (!form.teamId) return Util.errorMsg('请选择团队') |
|
|
|
|
if (!form.invitationCode) return Util.errorMsg('请输入团队邀请码') |
|
|
|
|
if (this.curItem.isNeedCode && !form.registrationInvitationCode) return Util.errorMsg('请输入大赛邀请码') |
|
|
|
|
this.$post(this.api.joinCompetitionTeam, form).then(res => { |
|
|
|
|
this.enterVisible = false |
|
|
|
|
this.getData() |
|
|
|
|
util.successMsg('报名成功!') |
|
|
|
|
Util.successMsg('报名成功!') |
|
|
|
|
}).catch(res => { }) |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
@ -599,15 +598,15 @@ export default { |
|
|
|
|
// 团队提交 |
|
|
|
|
teamSubmit () { |
|
|
|
|
const form = this.teamForm |
|
|
|
|
if (!form.teamName) return util.errorMsg('请输入团队名称') |
|
|
|
|
if (this.teamNameRepeat) return util.errorMsg('团队名称重复,请重新输入') |
|
|
|
|
if (form.invitationCode.length !== 6) return util.errorMsg('请输入6位数团队邀请码') |
|
|
|
|
if (this.curItem.isNeedCode && !form.registrationInvitationCode) return util.errorMsg('请输入大赛邀请码') |
|
|
|
|
if (!form.teamName) return Util.errorMsg('请输入团队名称') |
|
|
|
|
if (this.teamNameRepeat) return Util.errorMsg('团队名称重复,请重新输入') |
|
|
|
|
if (form.invitationCode.length !== 6) return Util.errorMsg('请输入6位数团队邀请码') |
|
|
|
|
if (this.curItem.isNeedCode && !form.registrationInvitationCode) return Util.errorMsg('请输入大赛邀请码') |
|
|
|
|
this.$post(this.api.addCompetitionTeam, form).then(res => { |
|
|
|
|
this.teamVisible = false |
|
|
|
|
this.enterVisible = false |
|
|
|
|
this.getData() |
|
|
|
|
util.successMsg('报名成功!') |
|
|
|
|
Util.successMsg('报名成功!') |
|
|
|
|
}).catch(res => { }) |
|
|
|
|
}, |
|
|
|
|
// 选择要进入的阶段 |
|
|
|
@ -636,12 +635,12 @@ export default { |
|
|
|
|
const { status, id } = item |
|
|
|
|
const { competitionType } = item |
|
|
|
|
// 如果没登录,提示去登录 |
|
|
|
|
if (util.local.get(Setting.tokenKey)) { |
|
|
|
|
if (Util.local.get(Setting.tokenKey)) { |
|
|
|
|
this.curItem = item |
|
|
|
|
if (status == 4) { // 进入比赛 |
|
|
|
|
// 参加过比赛不让参加 |
|
|
|
|
if (item.curStage.count) return util.errorMsg('您已经参加过该阶段竞赛!') |
|
|
|
|
if (item.isDisable === 1) return util.errorMsg('当前用户已被禁赛,如有疑问,请联系平台管理员。') // 被禁用的用户不能进入大赛 |
|
|
|
|
if (item.curStage.count) return Util.errorMsg('您已经参加过该阶段竞赛!') |
|
|
|
|
if (item.isDisable === 1) return Util.errorMsg('当前用户已被禁赛,如有疑问,请联系平台管理员。') // 被禁用的用户不能进入大赛 |
|
|
|
|
// 团队赛,则判断是否为参赛人员 |
|
|
|
|
if (competitionType) { |
|
|
|
|
this.$post(this.api.isParticipant, { |
|
|
|
@ -702,20 +701,20 @@ export default { |
|
|
|
|
// 进入python系统 |
|
|
|
|
toPython () { |
|
|
|
|
const form = this.curItem.curStage |
|
|
|
|
let token = util.local.get(Setting.tokenKey); |
|
|
|
|
util.cookies.set('assessmentId', '', -1) |
|
|
|
|
util.cookies.set('startTime', '', -1) |
|
|
|
|
util.cookies.set('stopTime', '', -1) |
|
|
|
|
util.cookies.set('projectId', form.projectId) |
|
|
|
|
util.cookies.set('token', token) |
|
|
|
|
util.cookies.set('courseId', form.cid) |
|
|
|
|
util.cookies.set('curriculumName', escape(form.systemName)) |
|
|
|
|
util.cookies.set('systemId', form.systemId) |
|
|
|
|
util.cookies.set('competitionId', this.curItem.id) |
|
|
|
|
util.cookies.set('stageId', form.stageId) |
|
|
|
|
util.cookies.set('teamId', this.curItem.teamId) |
|
|
|
|
util.cookies.set('stopTime', form.endTime) |
|
|
|
|
util.cookies.set('fromManager', '', -1) |
|
|
|
|
let token = Util.local.get(Setting.tokenKey); |
|
|
|
|
Util.cookies.set('assessmentId', '', -1) |
|
|
|
|
Util.cookies.set('startTime', '', -1) |
|
|
|
|
Util.cookies.set('stopTime', '', -1) |
|
|
|
|
Util.cookies.set('projectId', form.projectId) |
|
|
|
|
Util.cookies.set('token', token) |
|
|
|
|
Util.cookies.set('courseId', form.cid) |
|
|
|
|
Util.cookies.set('curriculumName', escape(form.systemName)) |
|
|
|
|
Util.cookies.set('systemId', form.systemId) |
|
|
|
|
Util.cookies.set('competitionId', this.curItem.id) |
|
|
|
|
Util.cookies.set('stageId', form.stageId) |
|
|
|
|
Util.cookies.set('teamId', this.curItem.teamId) |
|
|
|
|
Util.cookies.set('stopTime', form.endTime) |
|
|
|
|
Util.cookies.set('fromManager', '', -1) |
|
|
|
|
// 8个python子系统都跳这个地址,子系统会通过cookie里的systemId识别展示哪套系统 |
|
|
|
|
location.href = process.env.NODE_ENV === 'development' ? |
|
|
|
|
`http://${location.hostname}:8085/#/` : |
|
|
|
@ -729,7 +728,7 @@ export default { |
|
|
|
|
const { systemId, projectId, cid, stageId } = form.curStage |
|
|
|
|
const competitionId = form.id |
|
|
|
|
const teamId = form.teamId |
|
|
|
|
let token = util.local.get(Setting.tokenKey); |
|
|
|
|
let token = Util.local.get(Setting.tokenKey); |
|
|
|
|
if (systemId == 11) { |
|
|
|
|
// 银行系统 |
|
|
|
|
location.href = `${Setting.systemPath}/#/index/list?curriculumName=${this.curriculumName}&token=${token}&cid=${cid}&systemId=${systemId}&projectId=${projectId}&competitionId=${competitionId}&stageId=${stageId}&teamId=${teamId}&assessmentId=&classId=&stopTime=&test=true` |
|
|
|
|