赛事优化

dev_202412
yujialong 1 year ago
parent 30136c32f3
commit fcedab589f
  1. 170
      src/pages/match/details/index.vue
  2. 246
      src/pages/match/list/index.vue
  3. 4
      src/pages/station/preview/index.vue
  4. 215
      src/pages/touristMatch/list/index.vue
  5. 2
      src/setting.js

@ -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) { //
// 12()
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) { //
// 12()
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) {

@ -109,11 +109,11 @@
<div>
<span class="label">比赛时间</span><span class="val">{{ item.playStartTime}} ~ {{ item.playEndTime }}</span>
</div>
<div :title="item.ranges">
<span class="label">比赛范围</span><span class="val">{{ item.ranges }}</span>
<div :title="item.locations">
<span class="label">比赛范围</span><span class="val">{{ item.locations }}</span>
</div>
<div>
<span class="label">比赛类型</span><span class="val">{{ item.setup.competitionType ? '团体赛' : '个人赛' }}</span>
<span class="label">比赛类型</span><span class="val">{{ item.competitionType ? '团体赛' : '个人赛' }}</span>
</div>
<div v-if="item.curStage">
<span class="label">当前阶段</span><span class="val">{{ item.curStage.stageName }}</span>
@ -214,7 +214,7 @@
maxlength="6"
v-model="enterForm.invitationCode"></el-input>
</el-form-item>
<el-form-item v-if="curItem.setup.isNeedCode">
<el-form-item v-if="curItem.isNeedCode">
<el-input placeholder="请输入4位数大赛邀请码"
maxlength="4"
v-model="enterForm.registrationInvitationCode"></el-input>
@ -249,7 +249,7 @@
maxlength="6"
v-model="teamForm.invitationCode"></el-input>
</el-form-item>
<el-form-item v-if="curItem.setup.isNeedCode">
<el-form-item v-if="curItem.isNeedCode">
<el-input placeholder="请输入4位数大赛邀请码"
maxlength="4"
v-model="teamForm.registrationInvitationCode"></el-input>
@ -270,19 +270,19 @@
:close-on-click-modal="false"
width="600px"
@close="stageClose">
<template v-if="curStageItem && curStageItem.competitionStageContentSetting">
<div v-if="curStageItem.competitionStageContentSetting.systemLink"
<template v-if="curStageItem">
<div v-if="curStageItem.systemLink"
class="m-b-20">
<span class="fs-14">进入比赛</span>
<el-button type="danger"
style="font-size: 13px"
@click="toOffline">进入{{ curStageItem.stageName }}</el-button>
</div>
<div v-if="curStageItem.competitionStageContentSetting.fileUrl"
<div v-if="curStageItem.fileUrl"
class="flex m-b-20 fs-14">
<span style="padding-top: 7px">文件下载</span>
<div>
<div v-for="file in curStageItem.competitionStageContentSetting.fileList"
<div v-for="file in curStageItem.fileList"
:key="file">
<span style="margin-right: 10px;color: #606266;">{{ file.name }}</span>
<el-button type="text"
@ -321,7 +321,7 @@
</el-upload>
</div>
<div class="fs-14">说明{{ curStageItem.competitionStageContentSetting.stageExplain }}</div>
<div class="fs-14">说明{{ curStageItem.stageExplain }}</div>
</template>
<span slot="footer"
class="dialog-footer">
@ -449,9 +449,7 @@ export default {
invitationCode: '',
whetherSignUp: 1
},
curItem: {
setup: {}
},
curItem: {},
peopleSignupVisible: false,
peopleSignupForm: {
registrationInvitationCode: ''
@ -524,120 +522,106 @@ export default {
if (eventType === 2 && !competitionScope) form.competitionScope = 3 // 广competitionScope=03广
if (eventType !== 1) data.competitionScope = form.competitionScope //
this.$post(this.api.competitionAfterLogin, data).then(({ data }) => {
const { records } = data
records.forEach((n, k) => {
n.invitationCode = n.setup.invitationCode
//
const list = n.contestRangeRespList
if (list) {
const range = []
list.map(e => {
range.push(e.type ? (e.cityName || e.provinceName) : e.schoolName) // type 10
})
n.ranges = `${n.range}${range.join(',')}`
} else {
n.ranges = n.range
}
});
this.listData = records
this.listData = data.records
this.totals = data.total
this.handleStatus()
this.statusInterval()
// this.loadIns.close();
}).catch(res => {
// this.loadIns.close()
})
},
//
handleStatus () {
statusInterval () {
this.listData.map(item => {
if (item.signUpStartTime && item.signUpEndTime && item.playStartTime && item.playEndTime) {
let total = ''
let time = ''
let status = ''
let signUpStartTime = new Date(this.core.dateCompatible(item.signUpStartTime)) //
let signUpEndTime = new Date(this.core.dateCompatible(item.signUpEndTime)) //
let playStartTime = new Date(this.core.dateCompatible(item.playStartTime)) //
let playEndTime = new Date(this.core.dateCompatible(item.playEndTime)) //
this.handleStatus(item)
let timer = setInterval(() => {
const now = new Date()
if (now < signUpStartTime) { //
status = 0
total = signUpStartTime - now
} else if (now > signUpStartTime && now < signUpEndTime) { //
// whetherToSignUp 01
status = item.whetherToSignUp ? 2 : 1 // 12
total = signUpEndTime - now
} else if (now > signUpEndTime && now < playStartTime) { // ,
status = 3
total = playStartTime - now
} else if (now > playStartTime && now < playEndTime) { //
//
if (item.releaseType) {
//
let curStage = null
const stages = item.competitionStageList
if (stages) {
item.playingStages = []
//
item.whetherToSignUp === 0 && stages.forEach(e => {
if (now >= new Date(e.startTime) && now <= new Date(e.endTime) && (e.method !== 2 || this.offlineCanEntry(e))) item.playingStages.push(e)
})
for (const i in stages) {
const e = stages[i]
const startTime = new Date(e.startTime)
const endTime = new Date(e.endTime)
if (now < startTime) { //
this.$set(item, 'stageName', '')
this.$set(item, 'endText', '阶段开始')
total = startTime - now
break
} else if (now >= startTime && now <= endTime) { //
if (item.whetherToSignUp === 0 && (e.method !== 2 || this.offlineCanEntry(e))) this.$set(item, 'stageName', (!this.offlineCanEntry(e) && e.count) ? '已提交' : '进入' + e.stageName) //
this.$set(item, 'endText', '阶段结束')
curStage = e
total = endTime - now
break
} else if (stages[i + 1] && now > endTime && now < new Date(stages[i + 1].startTime)) { //
this.$set(item, 'stageName', '')
this.$set(item, 'endText', '阶段开始')
total = new Date(stages[i + 1].startTime) - now
break
} else if (i === stages.length - 1) { //
this.$set(item, 'stageName', '')
this.$set(item, 'endText', '竞赛结束')
total = playEndTime - now
break
}
}
}
item.curStage = curStage
} else { //
this.handleStatus(item)
}, 1000)
this.timerList.push(timer)
}
})
},
//
handleStatus (item) {
let total = ''
let time = ''
let status = ''
let signUpStartTime = new Date(this.core.dateCompatible(item.signUpStartTime)) //
let signUpEndTime = new Date(this.core.dateCompatible(item.signUpEndTime)) //
let playStartTime = new Date(this.core.dateCompatible(item.playStartTime)) //
let playEndTime = new Date(this.core.dateCompatible(item.playEndTime)) //
const now = new Date()
if (now < signUpStartTime) { //
status = 0
total = signUpStartTime - now
} else if (now > signUpStartTime && now < signUpEndTime) { //
// whetherToSignUp 01
status = item.whetherToSignUp ? 2 : 1 // 12
total = signUpEndTime - now
} else if (now > signUpEndTime && now < playStartTime) { // ,
status = 3
total = playStartTime - now
} else if (now > playStartTime && now < playEndTime) { //
//
if (item.releaseType) {
//
let curStage = null
const stages = item.competitionStageList
if (stages) {
item.playingStages = []
//
item.whetherToSignUp === 0 && stages.forEach(e => {
if (now >= new Date(e.startTime) && now <= new Date(e.endTime) && (e.method !== 2 || this.offlineCanEntry(e))) item.playingStages.push(e)
})
for (const i in stages) {
const e = stages[i]
const startTime = new Date(e.startTime)
const endTime = new Date(e.endTime)
if (now < startTime) { //
this.$set(item, 'stageName', '')
this.$set(item, 'endText', '阶段开始')
total = startTime - now
break
} else if (now >= startTime && now <= endTime) { //
if (item.whetherToSignUp === 0 && (e.method !== 2 || this.offlineCanEntry(e))) this.$set(item, 'stageName', (!this.offlineCanEntry(e) && e.count) ? '已提交' : '进入' + e.stageName) //
this.$set(item, 'endText', '阶段结束')
curStage = e
total = endTime - now
break
} else if (stages[i + 1] && now > endTime && now < new Date(stages[i + 1].startTime)) { //
this.$set(item, 'stageName', '')
this.$set(item, 'endText', '阶段开始')
total = new Date(stages[i + 1].startTime) - now
break
} else if (i === stages.length - 1) { //
this.$set(item, 'stageName', '')
this.$set(item, 'endText', '竞赛结束')
total = playEndTime - now
break
}
status = 4
} else if (now > playEndTime) { //
status = 5
}
this.$set(item, 'status', status)
total = total / 1000
--total
if (total > 86400) { //
// clearInterval(timer)
this.$set(item, '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.$set(item, 'end', time)
} else if (item.status === 5) { //
clearInterval(timer)
}
}, 1000)
this.timerList.push(timer)
}
this.$set(item, 'curStage', curStage)
} else { //
this.$set(item, 'endText', '竞赛结束')
total = playEndTime - now
}
})
status = 4
} else if (now > playEndTime) { //
status = 5
}
this.$set(item, 'status', status)
total = total / 1000
--total
if (total > 86400) { //
this.$set(item, '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.$set(item, 'end', time)
} else if (item.status === 5) { }
},
//
clearTimer () {
@ -719,7 +703,7 @@ export default {
const form = this.enterForm
if (!form.teamId) return util.errorMsg('请选择团队')
if (!form.invitationCode) return util.errorMsg('请输入团队邀请码')
if (this.curItem.setup.isNeedCode && !form.registrationInvitationCode) 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()
@ -754,7 +738,7 @@ export default {
if (!form.teamName) return util.errorMsg('请输入团队名称')
if (this.teamNameRepeat) return util.errorMsg('团队名称重复,请重新输入')
if (form.invitationCode.length !== 6) return util.errorMsg('请输入6位数团队邀请码')
if (this.curItem.setup.isNeedCode && !form.registrationInvitationCode) return util.errorMsg('请输入大赛邀请码')
if (this.curItem.isNeedCode && !form.registrationInvitationCode) return util.errorMsg('请输入大赛邀请码')
this.$post(this.api.addCompetitionTeam, form).then(res => {
this.teamVisible = false
this.enterVisible = false
@ -764,7 +748,7 @@ export default {
},
// 线
offlineCanEntry (stage) {
return stage.method === 2 && stage.competitionStageContentSetting && !!(stage.competitionStageContentSetting.systemLink || stage.competitionStageContentSetting.whetherToUploadFiles)
return stage.method === 2 && !!(stage.systemLink || stage.whetherToUploadFiles)
},
@ -835,7 +819,7 @@ export default {
},
//
handleRemove (file) {
Oss.del(file.url)
Oss.del(file.name)
this.fileList = []
this.curFileId && this.$post(this.api.cCompetitionStageFileDel, [this.curFileId]).then(res => {
this.curFileId = ''
@ -879,7 +863,7 @@ export default {
},
// 线<>
toOffline () {
window.open(this.curStageItem.competitionStageContentSetting.systemLink)
window.open(this.curStageItem.systemLink)
},
stageClick (e) { },
@ -907,7 +891,7 @@ export default {
//
signup (item) {
const { status, id } = item
const { competitionType } = item.setup
const { competitionType } = item
//
if (util.local.get(Setting.tokenKey)) {
this.curItem = item
@ -915,31 +899,31 @@ export default {
// 线(handleStatus)
if (item.curStage.method == 2) {
//
if (!item.curStage.competitionStageContentSetting.whetherToUploadFiles) {
window.open(item.curStage.competitionStageContentSetting.systemLink)
if (!item.curStage.whetherToUploadFiles) {
window.open(item.curStage.systemLink)
} else { //
this.curStageItem = item.curStage
this.stageVisible = true
//
if (item.curStage.competitionStageContentSetting && item.curStage.competitionStageContentSetting.fileUrl) {
const urls = item.curStage.competitionStageContentSetting.fileUrl.split('|')
const names = item.curStage.competitionStageContentSetting.fileName.split('|')
item.curStage.competitionStageContentSetting.fileList = []
if (item.curStage.fileUrl) {
const urls = item.curStage.fileUrl.split('|')
const names = item.curStage.fileName.split('|')
item.curStage.fileList = []
urls.map((n, i) => {
item.curStage.competitionStageContentSetting.fileList.push({
item.curStage.fileList.push({
name: names[i],
url: n
})
})
}
const file = item.curStage.competitionStageFile
const file = item.curStage.filePath
if (file) {
this.curFileId = file.id
this.curFileId = item.curStage.userFileId
this.fileList = [{
name: file.fileName,
url: file.filePath,
name: item.curStage.userFileName,
url: file,
}]
}
}
@ -972,7 +956,7 @@ export default {
}
this.enterVisible = true
} else { //
if (item.setup.isNeedCode) {
if (item.isNeedCode) {
this.curRow = item
this.peopleSignupForm.registrationInvitationCode = ''
this.peopleSignupVisible = true

@ -991,10 +991,6 @@ export default {
} else if (systemId == 19) {
//
location.href = `${Setting.sandPath}/#/?curriculumName=${this.curriculumName}&token=${token}&cid=${this.courseId}&mallId=${this.mallId}&systemId=${this.systemIds}&projectId=${this.curProject}&assessmentId=&classId=&stopTime=&referrer=${encodeURIComponent(location.href)}`
} else if (systemId == 21) {
window.open(`http://121.37.29.24:80/yyyflogin?userId=${this.userId}&userName=${userName}&userType=${roleId}&reqType=1&reqId=3989a0ad671849b99dcbdcc208782333&caseId=9681f86902314b10bc752909121f9ab9&authorization=87DIVy348Oxzj3ha&classId=1876&courserId=7ff5d4715b114b7398b6f26c20fac460`);
} else if (systemId == 22) {
window.open(`https://danbao.czcyedu.com/#/loginFromYyyf?userId=${this.userId}&userName=${userName}&userType=${roleId}&reqType=1&reqId=eb7d8355119d449184c548b07dc01ed9&caseId=1198241070647873538&authorization=87DIVy348Oxzj3ha&classId=1876&courserId=faaedd82adb9444285a5785e4a3dd4f9`);
} else {
// python
this.toPython(this.curProject)

@ -93,11 +93,11 @@
<div>
<span class="label">比赛时间</span><span class="val">{{ item.playStartTime}} ~ {{ item.playEndTime }}</span>
</div>
<div :title="item.ranges">
<span class="label">比赛范围</span><span class="val">{{ item.ranges }}</span>
<div :title="item.locations">
<span class="label">比赛范围</span><span class="val">{{ item.locations }}</span>
</div>
<div>
<span class="label">比赛类型</span><span class="val">{{ item.setup.competitionType ? '团体赛' : '个人赛' }}</span>
<span class="label">比赛类型</span><span class="val">{{ item.competitionType ? '团体赛' : '个人赛' }}</span>
</div>
<div v-if="item.curStage">
<span class="label">当前阶段</span><span class="val">{{ item.curStage.stageName }}</span>
@ -196,7 +196,7 @@
maxlength="6"
v-model="enterForm.invitationCode"></el-input>
</el-form-item>
<el-form-item v-if="curItem.setup.isNeedCode">
<el-form-item v-if="curItem.isNeedCode">
<el-input placeholder="请输入4位数大赛邀请码"
maxlength="4"
v-model="enterForm.registrationInvitationCode"></el-input>
@ -231,7 +231,7 @@
maxlength="6"
v-model="teamForm.invitationCode"></el-input>
</el-form-item>
<el-form-item v-if="curItem.setup.isNeedCode">
<el-form-item v-if="curItem.isNeedCode">
<el-input placeholder="请输入4位数大赛邀请码"
maxlength="4"
v-model="teamForm.registrationInvitationCode"></el-input>
@ -341,9 +341,7 @@ export default {
invitationCode: '',
whetherSignUp: 1
},
curItem: {
setup: {}
},
curItem: {},
peopleSignupVisible: false,
peopleSignupForm: {
registrationInvitationCode: ''
@ -389,121 +387,112 @@ export default {
keyWord: this.keyword
}
this.$post(this.api[util.local.get(Setting.tokenKey) ? 'competitionAfterLogin' : 'notLoggedInBeforeStudentEvents'], data).then(({ data }) => {
const { records } = data
const { token } = this
records.forEach((n, k) => {
n.invitationCode = n.setup.invitationCode
//
const list = n.contestRangeRespList
if (list) {
const range = []
list.map(e => {
range.push(e.type ? (e.provinceName || e.cityName) : e.schoolName) // type 10
})
n.ranges = `${n.range}${range.join(',')}`
} else {
n.ranges = n.range
}
})
this.listData = records
this.listData = data.records
this.totals = data.total
this.handleStatus()
this.statusInterval()
this.loadIns.close()
}).catch(res => {
this.loadIns.close()
})
},
//
handleStatus () {
statusInterval () {
this.listData.map(item => {
if (item.signUpStartTime && item.signUpEndTime && item.playStartTime && item.playEndTime) {
let total = ''
let time = ''
let status = ''
let signUpStartTime = new Date(this.core.dateCompatible(item.signUpStartTime)) //
let signUpEndTime = new Date(this.core.dateCompatible(item.signUpEndTime)) //
let playStartTime = new Date(this.core.dateCompatible(item.playStartTime)) //
let playEndTime = new Date(this.core.dateCompatible(item.playEndTime)) //
this.handleStatus(item)
let timer = setInterval(() => {
const now = new Date()
if (now < signUpStartTime) { //
status = 0
total = signUpStartTime - now
} else if (now > signUpStartTime && now < signUpEndTime) { //
// whetherToSignUp 01
status = item.whetherToSignUp === 0 ? 1 : 2 // 12
total = signUpEndTime - now
} else if (now > signUpEndTime && now < playStartTime) { // ,
status = 3
total = playStartTime - now
} else if (now > playStartTime && now < playEndTime) { //
//
if (item.releaseType) {
//
let curStage = null
const stages = item.competitionStageList
if (stages) {
item.playingStages = []
item.whetherToSignUp === 0 && stages.forEach(e => {
if (now >= new Date(e.startTime) && now <= new Date(e.endTime) && (e.method !== 2 || this.offlineCanEntry(e))) item.playingStages.push(e)
this.handleStatus(item)
}, 1000)
this.timerList.push(timer)
}
})
},
})
for (const i in stages) {
const e = stages[i]
const startTime = new Date(e.startTime)
const endTime = new Date(e.endTime)
if (now < startTime) { //
this.$set(item, 'stageName', '')
this.$set(item, 'endText', '阶段开始')
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) //
this.$set(item, 'endText', '阶段结束')
curStage = e
total = endTime - now
break
} else if (stages[i + 1] && now > endTime && now < new Date(stages[i + 1].startTime)) { //
this.$set(item, 'stageName', '')
this.$set(item, 'endText', '阶段开始')
total = new Date(stages[i + 1].startTime) - now
break
} else if (i === stages.length - 1) { //
this.$set(item, 'stageName', '')
this.$set(item, 'endText', '竞赛结束')
total = playEndTime - now
break
}
}
}
item.curStage = curStage
} else { //
//
handleStatus (item) {
console.log("🚀 ~ file: index.vue:413 ~ handleStatus ~ item:", item)
let total = ''
let time = ''
let status = ''
let signUpStartTime = new Date(this.core.dateCompatible(item.signUpStartTime)) //
let signUpEndTime = new Date(this.core.dateCompatible(item.signUpEndTime)) //
let playStartTime = new Date(this.core.dateCompatible(item.playStartTime)) //
let playEndTime = new Date(this.core.dateCompatible(item.playEndTime)) //
const now = new Date()
if (now < signUpStartTime) { //
status = 0
total = signUpStartTime - now
} else if (now > signUpStartTime && now < signUpEndTime) { //
// whetherToSignUp 01
status = item.whetherToSignUp === 0 ? 1 : 2 // 12
total = signUpEndTime - now
} else if (now > signUpEndTime && now < playStartTime) { // ,
status = 3
total = playStartTime - now
} else if (now > playStartTime && now < playEndTime) { //
//
if (item.releaseType) {
//
let curStage = null
const stages = item.competitionStageList
if (stages) {
item.playingStages = []
item.whetherToSignUp === 0 && stages.forEach(e => {
if (now >= new Date(e.startTime) && now <= new Date(e.endTime) && (e.method !== 2 || this.offlineCanEntry(e))) item.playingStages.push(e)
})
for (const i in stages) {
const e = stages[i]
const startTime = new Date(e.startTime)
const endTime = new Date(e.endTime)
if (now < startTime) { //
this.$set(item, 'stageName', '')
this.$set(item, 'endText', '阶段开始')
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) //
this.$set(item, 'endText', '阶段结束')
curStage = e
total = endTime - now
break
} else if (stages[i + 1] && now > endTime && now < new Date(stages[i + 1].startTime)) { //
this.$set(item, 'stageName', '')
this.$set(item, 'endText', '阶段开始')
total = new Date(stages[i + 1].startTime) - now
break
} else if (i === stages.length - 1) { //
this.$set(item, 'stageName', '')
this.$set(item, 'endText', '竞赛结束')
total = playEndTime - now
break
}
status = 4
} else if (now > playEndTime) { //
status = 5
}
this.$set(item, 'status', status)
total = total / 1000
--total
if (total > 86400) { //
// clearInterval(timer)
this.$set(item, '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.$set(item, 'end', time)
} else if (item.status === 5) { //
clearInterval(timer)
}
}, 1000)
this.timerList.push(timer)
}
this.$set(item, 'curStage', curStage)
} else { //
this.$set(item, 'endText', '竞赛结束')
total = playEndTime - now
}
})
status = 4
} else if (now > playEndTime) { //
status = 5
}
this.$set(item, 'status', status)
total = total / 1000
--total
if (total > 86400) { //
// clearInterval(timer)
this.$set(item, '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.$set(item, 'end', time)
} else if (item.status === 5) { //
}
},
//
clearTimer () {
@ -573,7 +562,7 @@ export default {
const form = this.enterForm
if (!form.teamId) return util.errorMsg('请选择团队')
if (!form.invitationCode) return util.errorMsg('请输入团队邀请码')
if (this.curItem.setup.isNeedCode && !form.registrationInvitationCode) 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()
@ -583,7 +572,7 @@ export default {
// 线
offlineCanEntry (stage) {
return stage.method === 2 && stage.competitionStageContentSetting && !!(stage.competitionStageContentSetting.systemLink || stage.competitionStageContentSetting.whetherToUploadFiles)
return stage.method === 2 && !!(stage.systemLink || stage.whetherToUploadFiles)
},
//
@ -612,7 +601,7 @@ export default {
if (!form.teamName) return util.errorMsg('请输入团队名称')
if (this.teamNameRepeat) return util.errorMsg('团队名称重复,请重新输入')
if (form.invitationCode.length !== 6) return util.errorMsg('请输入6位数团队邀请码')
if (this.curItem.setup.isNeedCode && !form.registrationInvitationCode) return util.errorMsg('请输入大赛邀请码')
if (this.curItem.isNeedCode && !form.registrationInvitationCode) return util.errorMsg('请输入大赛邀请码')
this.$post(this.api.addCompetitionTeam, form).then(res => {
this.teamVisible = false
this.enterVisible = false
@ -644,7 +633,7 @@ export default {
//
signup (item) {
const { status, id } = item
const { competitionType } = item.setup
const { competitionType } = item
//
if (util.local.get(Setting.tokenKey)) {
this.curItem = item
@ -666,7 +655,7 @@ export default {
}
} else if (status == 2) { //
//
if (item.setup.competitionType) {
if (item.competitionType) {
this.getTeam()
this.enterForm = {
competitionId: id,
@ -676,7 +665,7 @@ export default {
}
this.enterVisible = true
} else { //
if (item.setup.isNeedCode) {
if (item.isNeedCode) {
this.curRow = item
this.peopleSignupForm.registrationInvitationCode = ''
this.peopleSignupVisible = true

@ -33,7 +33,7 @@ if (isPro) {
host = "http://121.37.12.51/"; // 测试服
// host = 'https://www.occupationlab.com/' // 正式服
// host = "http://192.168.31.217:9000/"; // 榕
// host = "http://192.168.31.51:9000/"; // 赓
host = "http://192.168.31.51:9000/"; // 赓
} else if (isSq) {
zcPath = `10.20.100.204:8883`
}

Loading…
Cancel
Save