|
|
|
@ -78,7 +78,7 @@ |
|
|
|
|
<el-table-column prop="stopTime" label="结束时间" align="center"></el-table-column> |
|
|
|
|
<el-table-column label="倒计时" align="center"> |
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
<span>{{ scope.row.countDown | timeFilter }}</span> |
|
|
|
|
<span>{{ timeFilter(scope.row) }}</span> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column label="考核状态" align="center"> |
|
|
|
@ -135,6 +135,7 @@ export default { |
|
|
|
|
name: "ass", |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
|
tickerArr: [], |
|
|
|
|
classList: [], |
|
|
|
|
courseList: [], |
|
|
|
|
host: Setting.apiBaseURL, |
|
|
|
@ -243,37 +244,67 @@ export default { |
|
|
|
|
this.getCourseData(); |
|
|
|
|
this.getClassData(); |
|
|
|
|
}, |
|
|
|
|
filters: { |
|
|
|
|
methods: { |
|
|
|
|
timeFilter(countDown) { |
|
|
|
|
if (countDown > 0) { |
|
|
|
|
let h = Math.floor(countDown / (60 * 60)); |
|
|
|
|
let m = Math.floor(countDown % (60 * 60) / 60); |
|
|
|
|
let s = Math.floor(countDown % (60 * 60) % 60); |
|
|
|
|
if (countDown.countDown > 0) { |
|
|
|
|
let h = Math.floor(countDown.countDown / (60 * 60)); |
|
|
|
|
let m = Math.floor(countDown.countDown % (60 * 60) / 60); |
|
|
|
|
let s = Math.floor(countDown.countDown % (60 * 60) % 60); |
|
|
|
|
return `${h > 9 ? h : `0${h}`}:${m > 9 ? m : `0${m}`}:${s > 9 ? s : `0${s}`}`; |
|
|
|
|
} else { |
|
|
|
|
if (countDown.status == 1){ |
|
|
|
|
this.$post(`${this.api.collectPaper}?id=${countDown.assessmentId}`).then(res => { |
|
|
|
|
console.log('tes') |
|
|
|
|
console.log(res) |
|
|
|
|
}) |
|
|
|
|
}else{ |
|
|
|
|
console.log('???') |
|
|
|
|
} |
|
|
|
|
return "00:00:00"; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
}, |
|
|
|
|
// collectPaper(countDown){ |
|
|
|
|
// console.log(countDown) |
|
|
|
|
|
|
|
|
|
// }, |
|
|
|
|
beginTimer() { |
|
|
|
|
this.ticker = setInterval(() => { |
|
|
|
|
for (let i = 0; i < this.listData.length; i++) { |
|
|
|
|
const item = this.listData[i]; |
|
|
|
|
if (item.countDown > 0) { |
|
|
|
|
item.countDown--; |
|
|
|
|
} else { |
|
|
|
|
if (item.status == 0 && item.type == 2) { // 待开始-定时发布 |
|
|
|
|
item.status = 1; |
|
|
|
|
item.countDown = (new Date(item.stopTime).getTime() - new Date().getTime()) / 1000; |
|
|
|
|
} else if (item.status == 1) { |
|
|
|
|
// item.status = 2; |
|
|
|
|
const ticker = setInterval(() => { |
|
|
|
|
const item = this.listData[i]; |
|
|
|
|
if (item.countDown > 0) { |
|
|
|
|
item.countDown--; |
|
|
|
|
} else { |
|
|
|
|
if (item.status == 0 && item.type == 2) { // 待开始-定时发布 |
|
|
|
|
item.status = 1; |
|
|
|
|
item.countDown = (new Date(item.stopTime).getTime() - new Date().getTime()) / 1000; |
|
|
|
|
} else if (item.status == 1) { |
|
|
|
|
// item.status = 2; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
item.show = true; |
|
|
|
|
this.$set(this.listData, i, item); |
|
|
|
|
item.show = true; |
|
|
|
|
this.$set(this.listData, i, item); |
|
|
|
|
}, 1000) |
|
|
|
|
this.tickerArr.push(ticker) |
|
|
|
|
} |
|
|
|
|
}, 1000); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// this.ticker = setInterval(() => { |
|
|
|
|
// for (let i = 0; i < this.listData.length; i++) { |
|
|
|
|
// const item = this.listData[i]; |
|
|
|
|
// if (item.countDown > 0) { |
|
|
|
|
// item.countDown--; |
|
|
|
|
// } else { |
|
|
|
|
// if (item.status == 0 && item.type == 2) { // 待开始-定时发布 |
|
|
|
|
// item.status = 1; |
|
|
|
|
// item.countDown = (new Date(item.stopTime).getTime() - new Date().getTime()) / 1000; |
|
|
|
|
// } else if (item.status == 1) { |
|
|
|
|
// // item.status = 2; |
|
|
|
|
// } |
|
|
|
|
// } |
|
|
|
|
// item.show = true; |
|
|
|
|
// this.$set(this.listData, i, item); |
|
|
|
|
// } |
|
|
|
|
// }, 1000); |
|
|
|
|
}, |
|
|
|
|
getData() { |
|
|
|
|
this.listLoading = true; |
|
|
|
@ -288,6 +319,7 @@ export default { |
|
|
|
|
}; |
|
|
|
|
this.$post(this.api.pageStuAssessment, data).then(res => { |
|
|
|
|
this.listData = res.list; |
|
|
|
|
console.log(this.listData) |
|
|
|
|
this.totals = res.total; |
|
|
|
|
this.listData.forEach(i => { |
|
|
|
|
i.show = false; |
|
|
|
|