赛事优化

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.typeList = this.typeList.slice(0, 3)
} }
this.$refs.breadcrumb.update('全部赛事/' + competition.name) this.$refs.breadcrumb.update('全部赛事/' + competition.name)
this.handleStatus() this.handleStatus()
this.timer = setInterval(this.handleStatus, 1000)
}).catch(err => { }) }).catch(err => { })
}, },
// //
@ -903,99 +905,97 @@ export default {
let signUpEndTime = new Date(this.core.dateCompatible(form.signUpEndTime)) // let signUpEndTime = new Date(this.core.dateCompatible(form.signUpEndTime)) //
let playStartTime = new Date(this.core.dateCompatible(form.playStartTime)) // let playStartTime = new Date(this.core.dateCompatible(form.playStartTime)) //
let playEndTime = new Date(this.core.dateCompatible(form.playEndTime)) // let playEndTime = new Date(this.core.dateCompatible(form.playEndTime)) //
this.timer = setInterval(() => { const now = new Date()
const now = new Date() if (now < signUpStartTime) { //
if (now < signUpStartTime) { // status = 0
status = 0 total = signUpStartTime - now
total = signUpStartTime - now } else if (now > signUpStartTime && now < signUpEndTime) { //
} else if (now > signUpStartTime && now < signUpEndTime) { // // 12()
// 12() status = this.token ?
status = this.token ? (form.competitionRegistration ?
(form.competitionRegistration ? 1 :
1 : 2) :
2) : 2
2 total = signUpEndTime - now
total = signUpEndTime - now } else if (now > signUpEndTime && now < playStartTime) { // ,
} else if (now > signUpEndTime && now < playStartTime) { // , status = 3
status = 3 total = playStartTime - now
total = playStartTime - now } else if (now > playStartTime && now < playEndTime) { //
} else if (now > playStartTime && now < playEndTime) { // //
// if (form.releaseType) {
if (form.releaseType) { //
// let curStage = null
let curStage = null const stages = form.competitionStage
const stages = form.competitionStage if (stages) {
if (stages) { this.playingStages = []
this.playingStages = [] form.competitionRegistration && stages.forEach(e => {
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)
if (now >= new Date(e.startTime) && now <= new Date(e.endTime) && (e.method !== 2 || this.offlineCanEntry(e))) this.playingStages.push(e) })
}) let endText = ''
let endText = '' for (const i in stages) {
for (const i in stages) { const e = stages[i]
const e = stages[i] const startTime = new Date(e.startTime)
const startTime = new Date(e.startTime) const endTime = new Date(e.endTime)
const endTime = new Date(e.endTime) if (now < startTime) { //
if (now < startTime) { // endText = '阶段开始'
endText = '阶段开始' total = startTime - now
total = startTime - now break
break } else if (now >= startTime && now <= endTime) { //
} else if (now >= startTime && now <= endTime) { // // 线
// 线 if (e.method !== 2) {
if (e.method !== 2) { if (form.competitionRegistration) { //
if (form.competitionRegistration) { // this.statusList[4] = e.count ? '已提交' : '进入' + e.stageName
this.statusList[4] = e.count ? '已提交' : '进入' + e.stageName curStage = e
curStage = e } else if (!this.token) {
} else if (!this.token) {
this.statusList[4] = '进入' + e.stageName
curStage = e
}
} else if (this.offlineCanEntry(e) && form.competitionRegistration) { // 线()
//
//
//
this.statusList[4] = '进入' + e.stageName this.statusList[4] = '进入' + e.stageName
curStage = e curStage = e
} }
endText = '阶段结束' } else if (this.offlineCanEntry(e) && form.competitionRegistration) { // 线()
total = endTime - now //
break //
} else if (stages[i + 1] && now > endTime && now < new Date(stages[i + 1].startTime)) { // //
endText = '阶段开始' this.statusList[4] = '进入' + e.stageName
total = new Date(stages[i + 1].startTime) - now curStage = e
break
} else if (i === stages.length - 1) { //
this.$set(form, 'stageName', '')
endText = '竞赛结束'
total = playEndTime - now
break
} }
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 this.endList[4] = endText
} else { //
total = playEndTime - now
} }
status = 4 if (!this.choosing) this.curStage = curStage
} else if (now > playEndTime) { // } else { //
status = 5 total = playEndTime - now
}
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)
} }
}, 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) { offlineCanEntry (stage) {

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

@ -991,10 +991,6 @@ export default {
} else if (systemId == 19) { } 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)}` 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 { } else {
// python // python
this.toPython(this.curProject) this.toPython(this.curProject)

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

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

Loading…
Cancel
Save