dev_202412
yujialong 1 year ago
parent 2c59529486
commit 77012b78a6
  1. 2
      src/layouts/header/index.vue
  2. 11
      src/pages/ass/list/index.vue
  3. 183
      src/pages/match/details/index.vue
  4. 6
      src/pages/match/list/index.vue
  5. 71
      src/pages/station/preview/index.vue

@ -165,6 +165,8 @@ export default {
Bus.$emit('matchSocket')
} else if (content == 2) {
Bus.$emit('activitySocket')
} else if (content.includes('3-')) { // 3-id
Bus.$emit('assSocket')
} else if (content == 4) {
Bus.$emit('modelSocket')
} else {

@ -202,6 +202,7 @@
import { mapState, mapActions } from "vuex";
import Setting from "@/setting";
import util from "@/libs/util";
import Bus from '@/libs/bus'
export default {
name: "ass",
@ -310,6 +311,12 @@ export default {
}
},
mounted () {
// websocket
Bus.$on('assSocket', () => {
this.getData()
})
//
this.$once("hook:beforeDestroy", function () {
this.sss = 0
@ -498,10 +505,10 @@ export default {
util.cookies.set("token", token)
util.cookies.set("assessmentId", this.assessmentId)
util.cookies.set("classId", classId)
util.cookies.set("className", classItem ? encodeURIComponent(classItem.className) : '')
util.cookies.set("className", classItem ? classItem.className : '')
util.cookies.set("projectId", this.projectId)
util.cookies.set("courseId", this.cid)
util.cookies.set("curriculumName", escape(row.sysName));
util.cookies.set("curriculumName", encodeURIComponent(row.sysName));
util.cookies.set("startTime", row.startTime)
util.cookies.set("stopTime", row.stopTime)
util.cookies.set("systemId", this.systemId);

@ -83,8 +83,8 @@
<p>比赛时间{{ rule.startTime && rule.startTime + ' ~ ' + rule.endTime }}</p>
<p>比赛方式{{ methods.find(e => e.id == rule.method) && methods.find(e => e.id == rule.method).name }}</p>
<p v-if="rule.method != 2">课程系统{{ rule.systemName }}</p>
<p v-if="rule.onlineButton && rule.method != 2">线地点{{ rule.onlineAddress }}</p>
<p v-if="rule.offlineButton">比赛地点{{ rule.offlineAddress }}</p>
<p v-if="rule.onlineButton && rule.method != 2">线地点{{ rule.onlineAddress }}</p>
<p v-if="rule.offlineButton">线下地点{{ rule.offlineAddress }}</p>
<template v-if="rule.method === 2">
<p>比赛地点{{ rule.offlineAddress }}</p>
<p>比赛内容{{ rule.contentDescription }}</p>
@ -624,7 +624,8 @@
width="600px"
@close="stageClose">
<template v-if="curStage && curStage.competitionStageContentSetting">
<div v-if="curStage.competitionStageContentSetting.systemLink">
<div v-if="curStage.competitionStageContentSetting.systemLink"
class="m-b-20">
<span class="fs-14">进入比赛</span>
<el-button type="danger"
style="font-size: 13px"
@ -768,6 +769,7 @@ export default {
whetherSignUp: 1
},
curStage: null,
choosing: false,
originInfo: {},
info: {
isCaption: 0,
@ -897,99 +899,99 @@ 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.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)) { // 线()
//
//
//
this.statusList[4] = '进入' + e.stageName
curStage = e
}
} else if (this.offlineCanEntry(e)) { // 线()
//
//
//
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
}
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
}
this.endList[4] = endText
if (!this.choosing) this.curStage = curStage
} else { //
total = playEndTime - now
}
this.curStage = curStage
} else { //
total = playEndTime - now
status = 4
} else if (now > playEndTime) { //
status = 5
}
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)
}
// }, 1000)
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)
},
// 线
offlineCanEntry (stage) {
@ -1468,7 +1470,7 @@ export default {
});
this.uploading = false
const url = 'http://huoran.oss-cn-shenzhen.aliyuncs.com/' + name
const url = 'https://huoran.oss-cn-shenzhen.aliyuncs.com/' + name
this.fileList = [{
name: name,
url
@ -1517,12 +1519,14 @@ export default {
},
//
stageClose () {
this.choosing = false
this.fileList = []
this.getData()
},
//
chooseStage (e) {
this.choosing = true
this.curStage = e
this.signup()
},
@ -1650,6 +1654,7 @@ export default {
util.cookies.set('curriculumName', encodeURIComponent(form.systemName))
util.cookies.set('systemId', form.systemId)
util.cookies.set('isSubmit', '', -1)
util.cookies.set('className', '', -1)
util.cookies.set('competitionId', this.form.id)
util.cookies.set('stageId', form.stageId)
util.cookies.set('teamId', this.form.competitionRegistration.teamId)

@ -270,7 +270,8 @@
width="600px"
@close="stageClose">
<template v-if="curStageItem && curStageItem.competitionStageContentSetting">
<div v-if="curStageItem.competitionStageContentSetting.systemLink">
<div v-if="curStageItem.competitionStageContentSetting.systemLink"
class="m-b-20">
<span class="fs-14">进入比赛</span>
<el-button type="danger"
style="font-size: 13px"
@ -800,7 +801,7 @@ export default {
});
this.uploading = false
const url = 'http://huoran.oss-cn-shenzhen.aliyuncs.com/' + name
const url = 'https://huoran.oss-cn-shenzhen.aliyuncs.com/' + name
this.fileList = [{
name: name,
url
@ -1027,6 +1028,7 @@ export default {
util.cookies.set('fromManager', '', -1)
util.cookies.set('isSubmit', '', -1)
util.cookies.set('language', '', -1)
util.cookies.set('className', '', -1)
// 8pythoncookiesystemId
location.href = process.env.NODE_ENV === 'development' ?
`http://${location.hostname}:8085/#/` :

@ -64,6 +64,18 @@
<div class="video_wid"
id="player"></div>
</div>
<div class="inner"
v-else-if="videoSrc">
<video class="video"
width="100%"
height="100%"
autoplay
controls>
<source :src="videoSrc"
type="video/mp4">
您的浏览器不支持 video 标签
</video>
</div>
</div>
<div class="catalog">
<el-button v-if="!overdue"
@ -373,6 +385,8 @@
<span class="point">{{ item.highestScore }}</span>
</div>
</div>
<p v-else
class="none">暂无数据</p>
</div>
</div>
@ -489,6 +503,7 @@ export default {
currentPage: 0, // pdf
pageCount: 0, // pdf
fileType: "pdf", //
videoSrc: '',
desShrink: false,
projectVisible: false,
projects: [],
@ -802,37 +817,42 @@ export default {
//
if (this.overdue || showDia) {
this.curLink = `${chapterName}${row.name}`; // +
this.playauth = ''
this.playAuth = ''
this.coverUrl = ''
this.pdfSrc = ''
this.iframeSrc = ''
this.videoSrc = ''
this.isPPT = false
this.isWord = false
this.isExcel = false
if (this.transferType(row.fileType) == "视频") {
this.$get(`${this.api.getPlayAuth}/${row.fileId}`).then(res => {
this.playAuth = res.data.playAuth;
//
if (this.player) {
this.player.dispose()
this.player = null
}
this.$nextTick(() => {
//
if (row.fileId) {
this.$get(`${this.api.getPlayAuth}/${row.fileId}`).then(res => {
this.playAuth = res.data.playAuth;
//
if (this.player) {
this.player.replayByVidAndPlayAuth(row.fileId, this.playAuth);
} else {
this.player = new Aliplayer({
id: "player",
width: "100%",
autoplay: false,
vid: row.fileId,
playauth: this.playAuth,
encryptType: 1 //
});
this.player.dispose()
this.player = null
}
});
}).catch(res => {
});
this.$nextTick(() => {
if (this.player) {
this.player.replayByVidAndPlayAuth(row.fileId, this.playAuth);
} else {
this.player = new Aliplayer({
id: "player",
width: "100%",
autoplay: false,
vid: row.fileId,
playauth: this.playAuth,
encryptType: 1 //
});
}
});
}).catch(res => { });
} else {
this.videoSrc = row.fileUrl
}
} else if (this.transferType(row.fileType) == "图片") {
this.coverUrl = row.fileUrl
} else if (row.fileType == "pdf") {
@ -948,6 +968,7 @@ export default {
util.cookies.set('fromManager', '', -1)
util.cookies.set('competitionId', '', -1)
util.cookies.set('language', '', -1)
util.cookies.set('className', '', -1)
// 8pythoncookiesystemId
location.href = process.env.NODE_ENV === 'development' ?
`http://${location.hostname}:8085/#/` :
@ -1397,6 +1418,12 @@ $height: 700px;
font-weight: 600;
color: #007eff;
}
.none {
margin-top: 10px;
text-align: center;
font-size: 12px;
color: #727272;
}
}
@media (max-width: 1700px) {
.wrap {

Loading…
Cancel
Save