diff --git a/src/pages/match/details/index.vue b/src/pages/match/details/index.vue index cb3cea9..9fc2724 100644 --- a/src/pages/match/details/index.vue +++ b/src/pages/match/details/index.vue @@ -890,7 +890,9 @@ export default { this.typeList = this.typeList.slice(0, 3) } this.$refs.breadcrumb.update('全部赛事/' + competition.name) + this.handleStatus() + this.timer = setInterval(this.handleStatus, 1000) }).catch(err => { }) }, // 定时处理时间及状态 @@ -903,99 +905,97 @@ export default { let signUpEndTime = new Date(this.core.dateCompatible(form.signUpEndTime)) // 报名结束时间 let playStartTime = new Date(this.core.dateCompatible(form.playStartTime)) // 比赛开始时间 let playEndTime = new Date(this.core.dateCompatible(form.playEndTime)) // 比赛结束时间 - this.timer = setInterval(() => { - const now = new Date() - if (now < signUpStartTime) { // 报名没开始 - status = 0 - total = signUpStartTime - now - } else if (now > signUpStartTime && now < signUpEndTime) { // 报名进行中 - // 1已报名,2立即报名(没登录的情况下,直接显示立即报名,登录了则取报名信息,有则已报名,无则立即报名) - status = this.token ? - (form.competitionRegistration ? - 1 : - 2) : - 2 - total = signUpEndTime - now - } else if (now > signUpEndTime && now < playStartTime) { // 报名结束了,但比赛没开始 - status = 3 - total = playStartTime - now - } else if (now > playStartTime && now < playEndTime) { // 比赛进行中 - // 如果是完整比赛 - if (form.releaseType) { - // 进行中的赛事,则遍历每个阶段的开始结束时间,看阶段比赛是否开始 - let curStage = null - const stages = form.competitionStage - if (stages) { - this.playingStages = [] - form.competitionRegistration && stages.forEach(e => { - if (now >= new Date(e.startTime) && now <= new Date(e.endTime) && (e.method !== 2 || this.offlineCanEntry(e))) this.playingStages.push(e) - }) - let endText = '' - for (const i in stages) { - const e = stages[i] - const startTime = new Date(e.startTime) - const endTime = new Date(e.endTime) - if (now < startTime) { // 阶段比赛未开始,不显示进入比赛按钮 - endText = '阶段开始' - total = startTime - now - break - } else if (now >= startTime && now <= endTime) { // 阶段比赛进行中,显示进入比赛按钮 - // 非线下赛事 - if (e.method !== 2) { - if (form.competitionRegistration) { // 报名了才能进入比赛 - this.statusList[4] = e.count ? '已提交' : '进入' + e.stageName - curStage = e - } else if (!this.token) { - this.statusList[4] = '进入' + e.stageName - curStage = e - } - } else if (this.offlineCanEntry(e) && form.competitionRegistration) { // 线下(输入了系统链接或者上传文件选择了是,才需要显示进入按钮) - // 当系统链接为空,且上传文件为否时,无需展示入口 - // 当系统链接不为空,且上传文件为否时,点击入口,直接跳转到链接页面,无需弹窗 - // 当上传文件为是时,点击入口需弹窗,共两种样式 + const now = new Date() + if (now < signUpStartTime) { // 报名没开始 + status = 0 + total = signUpStartTime - now + } else if (now > signUpStartTime && now < signUpEndTime) { // 报名进行中 + // 1已报名,2立即报名(没登录的情况下,直接显示立即报名,登录了则取报名信息,有则已报名,无则立即报名) + status = this.token ? + (form.competitionRegistration ? + 1 : + 2) : + 2 + total = signUpEndTime - now + } else if (now > signUpEndTime && now < playStartTime) { // 报名结束了,但比赛没开始 + status = 3 + total = playStartTime - now + } else if (now > playStartTime && now < playEndTime) { // 比赛进行中 + // 如果是完整比赛 + if (form.releaseType) { + // 进行中的赛事,则遍历每个阶段的开始结束时间,看阶段比赛是否开始 + let curStage = null + const stages = form.competitionStage + if (stages) { + this.playingStages = [] + form.competitionRegistration && stages.forEach(e => { + if (now >= new Date(e.startTime) && now <= new Date(e.endTime) && (e.method !== 2 || this.offlineCanEntry(e))) this.playingStages.push(e) + }) + let endText = '' + for (const i in stages) { + const e = stages[i] + const startTime = new Date(e.startTime) + const endTime = new Date(e.endTime) + if (now < startTime) { // 阶段比赛未开始,不显示进入比赛按钮 + endText = '阶段开始' + total = startTime - now + break + } else if (now >= startTime && now <= endTime) { // 阶段比赛进行中,显示进入比赛按钮 + // 非线下赛事 + if (e.method !== 2) { + if (form.competitionRegistration) { // 报名了才能进入比赛 + this.statusList[4] = e.count ? '已提交' : '进入' + e.stageName + curStage = e + } else if (!this.token) { this.statusList[4] = '进入' + e.stageName curStage = e } - endText = '阶段结束' - total = endTime - now - break - } else if (stages[i + 1] && now > endTime && now < new Date(stages[i + 1].startTime)) { // 过了该阶段的结束时间,但是没到下个阶段的开始时间,不显示进入比赛按钮 - endText = '阶段开始' - total = new Date(stages[i + 1].startTime) - now - break - } else if (i === stages.length - 1) { // 当前时间在比赛开始结束时间之间,并且是最后一个阶段结束时间之后 - this.$set(form, 'stageName', '') - endText = '竞赛结束' - total = playEndTime - now - break + } else if (this.offlineCanEntry(e) && form.competitionRegistration) { // 线下(输入了系统链接或者上传文件选择了是,才需要显示进入按钮) + // 当系统链接为空,且上传文件为否时,无需展示入口 + // 当系统链接不为空,且上传文件为否时,点击入口,直接跳转到链接页面,无需弹窗 + // 当上传文件为是时,点击入口需弹窗,共两种样式 + this.statusList[4] = '进入' + e.stageName + curStage = e } + endText = '阶段结束' + total = endTime - now + break + } else if (stages[i + 1] && now > endTime && now < new Date(stages[i + 1].startTime)) { // 过了该阶段的结束时间,但是没到下个阶段的开始时间,不显示进入比赛按钮 + endText = '阶段开始' + total = new Date(stages[i + 1].startTime) - now + break + } else if (i === stages.length - 1) { // 当前时间在比赛开始结束时间之间,并且是最后一个阶段结束时间之后 + this.$set(form, 'stageName', '') + endText = '竞赛结束' + total = playEndTime - now + break } - this.endList[4] = endText } - if (!this.choosing) this.curStage = curStage - } else { // 仅发布信息 - total = playEndTime - now + this.endList[4] = endText } - status = 4 - } else if (now > playEndTime) { // 比赛结束 - status = 5 - } - this.status = status - total = total / 1000 - --total - if (total > 86400) { // 超过一天则显示天数 - // clearInterval(this.timer) - this.end = Math.floor(total / 86400) + '天' - } else if (total > 0) { // 一天之内,显示时分秒 - let hours = Math.floor(total / (60 * 60)) - let minutes = Math.floor(total % (60 * 60) / 60) - let seconds = Math.floor(total % (60 * 60) % 60) - time = `${this.core.formateTime(hours)}:${this.core.formateTime(minutes)}:${this.core.formateTime(seconds)}` - if (total > 0) this.end = time - } else if (this.status === 5) { // 竞赛结束,清除定时器 - clearInterval(this.timer) + if (!this.choosing) this.curStage = curStage + } else { // 仅发布信息 + total = playEndTime - now } - }, 1000) + status = 4 + } else if (now > playEndTime) { // 比赛结束 + status = 5 + } + this.status = status + total = total / 1000 + --total + if (total > 86400) { // 超过一天则显示天数 + // clearInterval(this.timer) + this.end = Math.floor(total / 86400) + '天' + } else if (total > 0) { // 一天之内,显示时分秒 + let hours = Math.floor(total / (60 * 60)) + let minutes = Math.floor(total % (60 * 60) / 60) + let seconds = Math.floor(total % (60 * 60) % 60) + time = `${this.core.formateTime(hours)}:${this.core.formateTime(minutes)}:${this.core.formateTime(seconds)}` + if (total > 0) this.end = time + } else if (this.status === 5) { // 竞赛结束,清除定时器 + clearInterval(this.timer) + } }, // 该阶段是否符合线下能进入比赛的条件 offlineCanEntry (stage) { diff --git a/src/pages/match/list/index.vue b/src/pages/match/list/index.vue index dcd03b9..9d1fd95 100644 --- a/src/pages/match/list/index.vue +++ b/src/pages/match/list/index.vue @@ -109,11 +109,11 @@