|
|
|
@ -1,62 +1,121 @@ |
|
|
|
|
<template> |
|
|
|
|
<div> |
|
|
|
|
<el-card shadow="hover" class="m-b-20 head-card"> |
|
|
|
|
<el-card shadow="hover" |
|
|
|
|
class="m-b-20 head-card"> |
|
|
|
|
<div class="flex-between m-b-20"> |
|
|
|
|
<el-page-header v-if="grades.length" @back="$router.back()" :content="grades[index].stageName + '/排名'"></el-page-header> |
|
|
|
|
<el-page-header v-if="grades.length" |
|
|
|
|
@back="$router.back()" |
|
|
|
|
:content="grades[index].stageName + '/排名'"></el-page-header> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
</el-card> |
|
|
|
|
|
|
|
|
|
<el-card shadow="hover" class="m-b-20"> |
|
|
|
|
<el-card shadow="hover" |
|
|
|
|
class="m-b-20"> |
|
|
|
|
<div class="tabs"> |
|
|
|
|
<template v-for="(item, i) in grades"> |
|
|
|
|
<a v-if="i === index || !item.stageId" :key="i" class="item" :class="{active: item.stageId == active}" @click="tabChange(item.stageId)">{{ item.stageName }}排名</a> |
|
|
|
|
<a v-if="i === index || !item.stageId" |
|
|
|
|
:key="i" |
|
|
|
|
class="item" |
|
|
|
|
:class="{active: item.stageId == active}" |
|
|
|
|
@click="tabChange(item.stageId)">{{ item.stageName }}排名</a> |
|
|
|
|
</template> |
|
|
|
|
</div> |
|
|
|
|
<div class="flex-between" style="margin: 20px 0"> |
|
|
|
|
<div class="flex-between" |
|
|
|
|
style="margin: 20px 0"> |
|
|
|
|
<div style="display: inline-flex;align-items: center"> |
|
|
|
|
<el-radio v-model="type" :label="0" @change="typeChange">默认系统排序</el-radio> |
|
|
|
|
<el-radio v-model="type" :label="1" @change="typeChange">手动上传</el-radio> |
|
|
|
|
<el-button type="primary" :disabled="type === 0" class="ml20" @click="batchImport">上传文件</el-button> |
|
|
|
|
<el-radio v-model="type" |
|
|
|
|
:label="0" |
|
|
|
|
@change="typeChange">默认系统排序</el-radio> |
|
|
|
|
<el-radio v-model="type" |
|
|
|
|
:label="1" |
|
|
|
|
@change="typeChange">手动上传</el-radio> |
|
|
|
|
<el-button type="primary" |
|
|
|
|
:disabled="type === 0" |
|
|
|
|
class="ml20" |
|
|
|
|
@click="batchImport">上传文件</el-button> |
|
|
|
|
</div> |
|
|
|
|
<div> |
|
|
|
|
<!-- <el-button v-if="(type && uploadData.length) || (!type && !published) || (!type && sourceType == 1)" type="primary" @click="cancelPublish(1)">发布排名</el-button> --> |
|
|
|
|
<el-button v-if="!published" type="primary" @click="cancelPublish(1)">发布排名</el-button> |
|
|
|
|
<el-button v-else type="primary" @click="cancelPublish(0)">取消发布</el-button> |
|
|
|
|
<el-button v-if="!published" |
|
|
|
|
type="primary" |
|
|
|
|
@click="cancelPublish(1)">发布排名</el-button> |
|
|
|
|
<div v-else> |
|
|
|
|
<span style="margin-right: 10px">{{ publishTime }}发布排名</span> |
|
|
|
|
<el-button type="primary" |
|
|
|
|
@click="cancelPublish(0)">取消发布</el-button> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<el-table :data="list" class="table" ref="table" stripe header-align="center"> |
|
|
|
|
<el-table-column type="index" width="60" label="排名" align="center"> |
|
|
|
|
</div> |
|
|
|
|
<el-table :data="list" |
|
|
|
|
class="table" |
|
|
|
|
ref="table" |
|
|
|
|
stripe |
|
|
|
|
header-align="center"> |
|
|
|
|
<el-table-column type="index" |
|
|
|
|
width="60" |
|
|
|
|
label="排名" |
|
|
|
|
align="center"> |
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
{{ scope.$index + (page - 1) * pageSize + 1 }} |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<template v-if="competitionType == 1"> |
|
|
|
|
<el-table-column prop="teamName" label="团队名称" min-width="150" align="center"></el-table-column> |
|
|
|
|
<el-table-column prop="leaderName" label="队长" min-width="150" align="center"></el-table-column> |
|
|
|
|
<el-table-column prop="teamName" |
|
|
|
|
label="团队名称" |
|
|
|
|
min-width="150" |
|
|
|
|
align="center"></el-table-column> |
|
|
|
|
<el-table-column prop="leaderName" |
|
|
|
|
label="队长" |
|
|
|
|
min-width="150" |
|
|
|
|
align="center"></el-table-column> |
|
|
|
|
</template> |
|
|
|
|
<el-table-column v-else prop="userName" label="学生姓名" min-width="100" align="center"></el-table-column> |
|
|
|
|
<el-table-column prop="schoolName" label="学校" min-width="100" align="center"></el-table-column> |
|
|
|
|
<el-table-column prop="timeSum" label="用时" width="90" align="center"> |
|
|
|
|
<el-table-column v-else |
|
|
|
|
prop="userName" |
|
|
|
|
label="学生姓名" |
|
|
|
|
min-width="100" |
|
|
|
|
align="center"></el-table-column> |
|
|
|
|
<el-table-column prop="schoolName" |
|
|
|
|
label="学校" |
|
|
|
|
min-width="100" |
|
|
|
|
align="center"></el-table-column> |
|
|
|
|
<el-table-column prop="timeSum" |
|
|
|
|
label="用时" |
|
|
|
|
width="90" |
|
|
|
|
align="center"> |
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
{{ scope.row.timeSum + (scope.row.timeSum === '—' ? '' : 'min') }} |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column prop="score" label="分数" width="90" align="center"></el-table-column> |
|
|
|
|
<el-table-column label="得分详情" align="center" width="160"> |
|
|
|
|
<el-table-column prop="score" |
|
|
|
|
label="分数" |
|
|
|
|
width="90" |
|
|
|
|
align="center"></el-table-column> |
|
|
|
|
<el-table-column label="得分详情" |
|
|
|
|
align="center" |
|
|
|
|
width="160"> |
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
<el-button v-if="(!competitionType && scope.row.reportId) || competitionType" type="text" @click="show(scope.row, scope.$index)">查看</el-button> |
|
|
|
|
<el-button v-if="(!competitionType && scope.row.reportId) || competitionType" |
|
|
|
|
type="text" |
|
|
|
|
@click="show(scope.row, scope.$index)">查看</el-button> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
</el-table> |
|
|
|
|
<div class="pagination"> |
|
|
|
|
<el-pagination background layout="total, prev, pager, next" :total="total" @current-change="handleCurrentChange" :current-page="page"> |
|
|
|
|
<el-pagination background |
|
|
|
|
layout="total, prev, pager, next" |
|
|
|
|
:total="total" |
|
|
|
|
@current-change="handleCurrentChange" |
|
|
|
|
:current-page="page"> |
|
|
|
|
</el-pagination> |
|
|
|
|
</div> |
|
|
|
|
</el-card> |
|
|
|
|
|
|
|
|
|
<el-dialog title="团队得分详情" :visible.sync="teamVisible" width="900px" :close-on-click-modal="false"> |
|
|
|
|
<h6 v-if="active" style="margin-bottom: 10px;font-size: 16px;">团队名称:{{ curRow.teamName }} 阶段名称:{{ stageName }}</h6> |
|
|
|
|
<el-dialog title="团队得分详情" |
|
|
|
|
:visible.sync="teamVisible" |
|
|
|
|
width="900px" |
|
|
|
|
:close-on-click-modal="false"> |
|
|
|
|
<h6 v-if="active" |
|
|
|
|
style="margin-bottom: 10px;font-size: 16px;">团队名称:{{ curRow.teamName }} 阶段名称:{{ stageName }}</h6> |
|
|
|
|
<table class="table tc"> |
|
|
|
|
<tr> |
|
|
|
|
<template v-if="!active"> |
|
|
|
@ -71,10 +130,12 @@ |
|
|
|
|
<th width="100">得分详情</th> |
|
|
|
|
</tr> |
|
|
|
|
<template v-if="teams.length"> |
|
|
|
|
<tr v-for="(item, i) in teams" :key="i"> |
|
|
|
|
<tr v-for="(item, i) in teams" |
|
|
|
|
:key="i"> |
|
|
|
|
<template v-if="!active && item.rowspan"> |
|
|
|
|
<td :rowspan="item.rowspan">{{ item.stageName }}</td> |
|
|
|
|
<td class="scores" :rowspan="item.rowspan"> |
|
|
|
|
<td class="scores" |
|
|
|
|
:rowspan="item.rowspan"> |
|
|
|
|
<p class="score">{{ item.teamScore }}</p> |
|
|
|
|
<p>{{ item.teamCalculationMethodName }}</p> |
|
|
|
|
<p>权重:</p> |
|
|
|
@ -88,10 +149,13 @@ |
|
|
|
|
<td>{{ item.timeSum }}min</td> |
|
|
|
|
<td>{{ item.score }}</td> |
|
|
|
|
<td> |
|
|
|
|
<el-button v-if="item.reportId" type="text" @click="toReport(item)">查看</el-button> |
|
|
|
|
<el-button v-if="item.reportId" |
|
|
|
|
type="text" |
|
|
|
|
@click="toReport(item)">查看</el-button> |
|
|
|
|
</td> |
|
|
|
|
</template> |
|
|
|
|
<td v-else colspan="6"></td> |
|
|
|
|
<td v-else |
|
|
|
|
colspan="6"></td> |
|
|
|
|
</tr> |
|
|
|
|
</template> |
|
|
|
|
<tr v-else> |
|
|
|
@ -103,18 +167,24 @@ |
|
|
|
|
<td colspan="6">总排名:第{{ curRow.index }}名</td> |
|
|
|
|
</tr> |
|
|
|
|
</table> |
|
|
|
|
<span slot="footer" class="dialog-footer"> |
|
|
|
|
<el-button size="small" type="primary" @click="teamVisible = false">确定</el-button> |
|
|
|
|
<span slot="footer" |
|
|
|
|
class="dialog-footer"> |
|
|
|
|
<el-button size="small" |
|
|
|
|
type="primary" |
|
|
|
|
@click="teamVisible = false">确定</el-button> |
|
|
|
|
</span> |
|
|
|
|
</el-dialog> |
|
|
|
|
|
|
|
|
|
<el-dialog title="批量导入" :visible.sync="importVisible" width="24%" :close-on-click-modal="false"> |
|
|
|
|
<el-dialog title="批量导入" |
|
|
|
|
:visible.sync="importVisible" |
|
|
|
|
width="24%" |
|
|
|
|
:close-on-click-modal="false"> |
|
|
|
|
<div style="text-align: center"> |
|
|
|
|
<div style="margin-bottom: 10px;"> |
|
|
|
|
<el-button type="primary" @click="download">模板下载<i class="el-icon-download el-icon--right"></i></el-button> |
|
|
|
|
<el-button type="primary" |
|
|
|
|
@click="download">模板下载<i class="el-icon-download el-icon--right"></i></el-button> |
|
|
|
|
</div> |
|
|
|
|
<el-upload |
|
|
|
|
ref="upload" |
|
|
|
|
<el-upload ref="upload" |
|
|
|
|
name="file" |
|
|
|
|
accept=".xls,.xlsx" |
|
|
|
|
:on-remove="handleRemove" |
|
|
|
@ -132,22 +202,49 @@ |
|
|
|
|
isOverallRanking: active ? 0 : 1, |
|
|
|
|
schoolId: '' |
|
|
|
|
}" |
|
|
|
|
:auto-upload="false" |
|
|
|
|
> |
|
|
|
|
<el-button type="primary" class="ml20">上传文件<i class="el-icon-upload2 el-icon--right"></i></el-button> |
|
|
|
|
:auto-upload="false"> |
|
|
|
|
<el-button type="primary" |
|
|
|
|
class="ml20">上传文件<i class="el-icon-upload2 el-icon--right"></i></el-button> |
|
|
|
|
</el-upload> |
|
|
|
|
<el-link v-if="uploadFaild" type="primary" @click="showFaild">部分数据导入失败,查看失败原因</el-link> |
|
|
|
|
<el-link v-if="uploadFaild" |
|
|
|
|
type="primary" |
|
|
|
|
@click="showFaild">部分数据导入失败,查看失败原因</el-link> |
|
|
|
|
</div> |
|
|
|
|
<span slot="footer" class="dialog-footer"> |
|
|
|
|
<el-button size="small" @click="importVisible = false">取 消</el-button> |
|
|
|
|
<el-button size="small" type="primary" @click="uploadSure">确 定</el-button> |
|
|
|
|
<span slot="footer" |
|
|
|
|
class="dialog-footer"> |
|
|
|
|
<el-button size="small" |
|
|
|
|
@click="importVisible = false">取 消</el-button> |
|
|
|
|
<el-button size="small" |
|
|
|
|
type="primary" |
|
|
|
|
@click="uploadSure">确 定</el-button> |
|
|
|
|
</span> |
|
|
|
|
</el-dialog> |
|
|
|
|
|
|
|
|
|
<el-dialog title="请选择发布排名时间" |
|
|
|
|
:visible.sync="publishVisible" |
|
|
|
|
width="260px" |
|
|
|
|
:close-on-click-modal="false" |
|
|
|
|
custom-class="publish-dia"> |
|
|
|
|
<el-date-picker popper-class="no-atTheMoment" |
|
|
|
|
v-model="publishTime" |
|
|
|
|
placeholder="请选择结束时间" |
|
|
|
|
type="datetime" |
|
|
|
|
:picker-options="pickerOptions"> |
|
|
|
|
</el-date-picker> |
|
|
|
|
<span slot="footer" |
|
|
|
|
class="dialog-footer"> |
|
|
|
|
<el-button size="small" |
|
|
|
|
@click="publishVisible = false">取 消</el-button> |
|
|
|
|
<el-button size="small" |
|
|
|
|
type="primary" |
|
|
|
|
@click="publishTimeSubmit">确 定</el-button> |
|
|
|
|
</span> |
|
|
|
|
</el-dialog> |
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<script> |
|
|
|
|
import Setting from "@/setting"; |
|
|
|
|
import Setting from '@/setting' |
|
|
|
|
import util from "@/libs/util"; |
|
|
|
|
import echarts from "echarts"; |
|
|
|
|
import axios from 'axios'; |
|
|
|
@ -197,7 +294,24 @@ export default { |
|
|
|
|
totalScore: 0, |
|
|
|
|
published: false, |
|
|
|
|
uploadData: [], |
|
|
|
|
sourceType: '' |
|
|
|
|
sourceType: '', |
|
|
|
|
publishVisible: false, |
|
|
|
|
publishTime: '', |
|
|
|
|
timeId: '', |
|
|
|
|
pickerOptions: { |
|
|
|
|
// 控制过往日期不可选 |
|
|
|
|
disabledDate (time) { |
|
|
|
|
return time.getTime() < Date.now() - 8.64e7; |
|
|
|
|
}, |
|
|
|
|
// 控制过往时间不可选 |
|
|
|
|
selectableRange: (() => { |
|
|
|
|
let data = new Date(); |
|
|
|
|
let hour = data.getHours(); |
|
|
|
|
let minute = data.getMinutes(); |
|
|
|
|
let second = data.getSeconds(); |
|
|
|
|
return [`${hour}:${minute}:${second} - 23:59:59`] |
|
|
|
|
})(), |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
}, |
|
|
|
|
mounted () { |
|
|
|
@ -257,6 +371,7 @@ export default { |
|
|
|
|
this.sourceType = message.total ? message.records[0].isRelease : 0 |
|
|
|
|
this.list = message.records |
|
|
|
|
this.total = message.total |
|
|
|
|
this.getPublishTime() |
|
|
|
|
}).catch(res => { }) |
|
|
|
|
} else { // 默认排名接口 |
|
|
|
|
if (!this.active) { |
|
|
|
@ -273,12 +388,14 @@ export default { |
|
|
|
|
this.published = publishStatus |
|
|
|
|
this.list = page |
|
|
|
|
this.total = total |
|
|
|
|
this.getPublishTime() |
|
|
|
|
}).catch(res => { }) |
|
|
|
|
} else { // 阶段排名 |
|
|
|
|
this.$post(`${this.api.stageRaceRanking}?competitionId=${this.id}&stageId=${this.active}&pageNum=${this.page}&pageSize=${this.pageSize}&publicationType=${this.type}`).then(({ page, total, publishStatus }) => { |
|
|
|
|
this.published = publishStatus |
|
|
|
|
this.list = page |
|
|
|
|
this.total = total |
|
|
|
|
this.getPublishTime() |
|
|
|
|
}).catch(res => { }) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -476,8 +593,35 @@ export default { |
|
|
|
|
}).catch(res => { }) |
|
|
|
|
// this.publishSubmit() |
|
|
|
|
}, |
|
|
|
|
// 获取定时发布排名 |
|
|
|
|
async getPublishTime () { |
|
|
|
|
const res = await this.$post(this.api.getCompetitionStageRankingTime, { |
|
|
|
|
competitionId: this.id, |
|
|
|
|
isOverallRanking: this.active ? 0 : 1, |
|
|
|
|
publicationType: this.type, |
|
|
|
|
stageId: this.active || this.stageId, |
|
|
|
|
}) |
|
|
|
|
if (res.releaseTime) { |
|
|
|
|
this.published = true |
|
|
|
|
this.timeId = res.releaseTime.id |
|
|
|
|
this.publishTime = res.releaseTime.releaseTime |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
// 定时发布排名 |
|
|
|
|
async publishTimeSubmit () { |
|
|
|
|
this.$post(this.api.addCompetitionStageRankingTime, { |
|
|
|
|
competitionId: this.id, |
|
|
|
|
isOverallRanking: this.active ? 0 : 1, |
|
|
|
|
publicationType: this.type, |
|
|
|
|
stageId: this.active || this.stageId, |
|
|
|
|
releaseTime: util.formatDate("yyyy-MM-dd hh:mm:ss", this.publishTime) |
|
|
|
|
}) |
|
|
|
|
util.successMsg('发布成功') |
|
|
|
|
this.getData() |
|
|
|
|
this.publishVisible = false |
|
|
|
|
}, |
|
|
|
|
// 取消发布排名 |
|
|
|
|
cancelPublish(publish) { |
|
|
|
|
async cancelPublish (publish) { |
|
|
|
|
const ids = this.grades.map(e => e.stageId) |
|
|
|
|
const stageIds = ids.splice(0, ids.length - 1) |
|
|
|
|
const query = [] |
|
|
|
@ -487,22 +631,21 @@ export default { |
|
|
|
|
// 如果是发布排名,则先删除已发布的排名,再调发布排名的接口 |
|
|
|
|
// 如果是取消发布,则直接调取消发布的接口 |
|
|
|
|
if (publish) { |
|
|
|
|
// this.type ? |
|
|
|
|
this.publish() |
|
|
|
|
// this.$post(this.api.deleteLastPublication, { |
|
|
|
|
// competitionId: this.id, |
|
|
|
|
// isOverallRanking: this.active ? 0 : 1, |
|
|
|
|
// stageIds: this.active ? [this.active] : stageIds |
|
|
|
|
// }).then(res => { |
|
|
|
|
// this.publish() |
|
|
|
|
// }).catch(res => {}) |
|
|
|
|
this.publishTime = new Date() |
|
|
|
|
this.publishVisible = true |
|
|
|
|
} else { |
|
|
|
|
try { |
|
|
|
|
// 取消定时发布的接口跟取消普通发布的接口不一样 |
|
|
|
|
if (this.timeId) { |
|
|
|
|
await this.$post(`${this.api.cancelCompetitionStageRankingTime}?releaseId=${this.timeId}`) |
|
|
|
|
} else { |
|
|
|
|
this.$post(`${this.api.cancelRanking}?competitionId=${this.id}&isOverallRanking=${this.active ? 0 : 1}&${this.active ? 'stageIds=' + this.active : query.join('&')}`).then(res => { |
|
|
|
|
await this.$post(`${this.api.cancelRanking}?competitionId=${this.id}&isOverallRanking=${this.active ? 0 : 1}&${this.active ? 'stageIds=' + this.active : query.join('&')}`) |
|
|
|
|
} |
|
|
|
|
this.sourceType = '' |
|
|
|
|
this.type = 0 |
|
|
|
|
this.getData() |
|
|
|
|
util.successMsg('取消发布成功!') |
|
|
|
|
}).catch(res => {}) |
|
|
|
|
} catch (error) { } |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
// 批量导入 |
|
|
|
@ -576,7 +719,8 @@ export default { |
|
|
|
|
.table { |
|
|
|
|
width: 100%; |
|
|
|
|
border-collapse: collapse; |
|
|
|
|
th, td { |
|
|
|
|
th, |
|
|
|
|
td { |
|
|
|
|
padding: 12px; |
|
|
|
|
border: 1px solid #ebeef5; |
|
|
|
|
} |
|
|
|
@ -593,7 +737,7 @@ export default { |
|
|
|
|
.score { |
|
|
|
|
font-size: 16px; |
|
|
|
|
font-weight: 600; |
|
|
|
|
color: #9076FF; |
|
|
|
|
color: #9076ff; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
</style> |