You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

806 lines
29 KiB

2 years ago
<template>
2 years ago
<div>
10 months ago
<el-card shadow="hover" class="m-b-20 head-card">
6 months ago
<div class="flex-between">
10 months ago
<el-page-header v-if="grades.length" @back="back" :content="grades[index].stageName + '/排名'"></el-page-header>
2 years ago
</div>
2 years ago
2 years ago
</el-card>
2 years ago
10 months ago
<el-card shadow="hover" v-loading="loading" class="m-b-20">
2 years ago
<div class="tabs">
<template v-for="(item, i) in grades">
10 months ago
<a v-if="i === index || !item.stageId" :key="i" class="item" :class="{ active: item.stageId == active }"
@click="tabChange(item.stageId)">{{ item.stageName }}排名</a>
2 years ago
</template>
</div>
6 months ago
<div class="tool flex-between" style="margin-top: 20px">
2 years ago
<div style="display: inline-flex;align-items: center">
10 months ago
<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>
2 years ago
</div>
6 months ago
<ul class="filter" style="flex: none;">
<li>
<label>省份</label>
<el-select v-model="filter.provinceId" clearable filterable placeholder="请选择省份" @change="provinceChange"
@clear="clearProvince">
<el-option v-for="(item, i) in provinces" :key="i" :label="item.provinceName"
:value="item.provinceId"></el-option>
</el-select>
</li>
<li>
<label>城市</label>
<el-select v-model="filter.cityId" clearable filterable placeholder="请选择城市" :disabled="!filter.provinceId"
@change="initData">
<el-option v-for="(item, i) in cities" :key="i" :label="item.cityName" :value="item.cityId"></el-option>
</el-select>
</li>
<li>
<label>学校</label>
<el-select v-model="filter.realSchoolId" clearable filterable placeholder="请选择学校" @change="initData">
<el-option v-for="(item, i) in schools" :key="i" :label="item.schoolName"
:value="item.schoolId"></el-option>
</el-select>
</li>
<li>
<el-input style="margin-right: 15px" :placeholder="'请输入' + (competitionType ? '团队名称/队长' : '学生姓名') + '/学校'"
prefix-icon="el-icon-search" v-model="keyword" clearable></el-input>
</li>
10 months ago
<el-button v-if="!published" type="primary" @click="cancelPublish(1)">发布排名</el-button>
1 year ago
<template v-else>
12 months ago
<span style="margin-right: 10px;white-space: nowrap;">{{ publishTime }}发布排名</span>
10 months ago
<el-button type="primary" @click="cancelPublish(0)">取消发布</el-button>
1 year ago
</template>
10 months ago
<el-button v-if="list.length" type="primary" :loading="exporting" @click="exportData">{{ exporting ? '正在导出' :
'批量导出'
}}</el-button>
6 months ago
</ul>
2 years ago
</div>
6 months ago
<el-table :data="list" class="table" ref="table" row-key="scoreId" @selection-change="handleSelectionChange"
header-align="center">
10 months ago
<el-table-column type="selection" width="55" align="center" :reserve-selection="true"></el-table-column>
<el-table-column type="index" width="60" label="排名" align="center">
2 years ago
<template slot-scope="scope">
{{ scope.$index + (page - 1) * pageSize + 1 }}
</template>
</el-table-column>
<template v-if="competitionType == 1">
10 months ago
<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>
2 years ago
</template>
10 months ago
<el-table-column v-else prop="userName" label="学生姓名" min-width="100" align="center"></el-table-column>
6 months ago
<el-table-column prop="provinceName" label="省份" min-width="100" align="center"></el-table-column>
<el-table-column prop="cityName" label="城市" min-width="100" align="center"></el-table-column>
10 months ago
<el-table-column prop="schoolName" label="学生账号归属" min-width="100" align="center"></el-table-column>
<el-table-column prop="realSchool" label="学生所在院校" min-width="100" align="center"></el-table-column>
<el-table-column prop="timeSum" label="用时" width="90" align="center">
2 years ago
<template slot-scope="scope">
{{ scope.row.timeSum + (scope.row.timeSum === '—' ? '' : 'min') }}
</template>
</el-table-column>
10 months ago
<el-table-column prop="score" label="分数" width="90" align="center"></el-table-column>
<el-table-column label="得分详情" align="center" width="160">
2 years ago
<template slot-scope="scope">
10 months ago
<el-button v-if="(!competitionType && scope.row.reportId) || competitionType" type="text"
@click="show(scope.row, scope.$index)">查看</el-button>
2 years ago
</template>
</el-table-column>
</el-table>
<div class="pagination">
10 months ago
<el-pagination background layout="total, prev, pager, next" :total="total" @current-change="handleCurrentChange"
:current-page="page">
2 years ago
</el-pagination>
</div>
</el-card>
10 months ago
<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>
2 years ago
<table class="table tc">
<tr>
<template v-if="!active">
<th width="100">阶段</th>
<th width="100">团队成绩</th>
</template>
<th width="60">序号</th>
<th width="100">姓名</th>
<th width="100">学校</th>
<th width="100">用时</th>
<th width="100">分数</th>
<th width="100">得分详情</th>
</tr>
<template v-if="teams.length">
10 months ago
<tr v-for="(item, i) in teams" :key="i">
2 years ago
<template v-if="!active && item.rowspan">
<td :rowspan="item.rowspan">{{ item.stageName }}</td>
10 months ago
<td class="scores" :rowspan="item.rowspan">
2 years ago
<p class="score">{{ item.teamScore }}</p>
<p>{{ item.teamCalculationMethodName }}</p>
1 year ago
<template v-if="isPointWeight">
<p>权重</p>
<p>{{ item.pointWeight }}%</p>
</template>
2 years ago
</td>
</template>
<template v-if="item.accountId">
<td>{{ i + 1 }}</td>
<td>{{ item.userName }}</td>
6 months ago
<td>{{ item.realSchool }}</td>
2 years ago
<td>{{ item.timeSum }}min</td>
<td>{{ item.score }}</td>
<td>
10 months ago
<el-button v-if="item.reportId" type="text" @click="toReport(item)">查看</el-button>
2 years ago
</td>
2 years ago
</template>
10 months ago
<td v-else colspan="6"></td>
2 years ago
</tr>
</template>
<tr v-else>
<td colspan="99">暂无数据</td>
</tr>
<tr v-if="!active && teams.length">
<td>综合得分</td>
<td>{{ curRow.score }}</td>
<td colspan="6">总排名{{ curRow.index }}</td>
</tr>
</table>
10 months ago
<span slot="footer" class="dialog-footer">
<el-button size="small" type="primary" @click="teamVisible = false">确定</el-button>
2 years ago
</span>
</el-dialog>
10 months ago
<el-dialog title="批量导入" :visible.sync="importVisible" width="24%" :close-on-click-modal="false"
@close="cancelUpload">
2 years ago
<div style="text-align: center">
12 months ago
<template v-if="!uploadFaild">
<div style="margin-bottom: 10px;">
10 months ago
<el-button type="primary" @click="download">模板下载<i class="el-icon-download el-icon--right"></i></el-button>
12 months ago
</div>
10 months ago
<el-upload ref="upload" name="file" accept=".xls,.xlsx" class="import-file" :before-upload="beforeUpload"
:on-remove="handleRemove" :on-error="uploadError" :on-success="uploadSuccess" :before-remove="beforeRemove"
:limit="1" :on-exceed="handleExceed" :action="this.api.batchImportRanking" :file-list="uploadList"
:headers="headers" :disabled="uploading" :data="{
competitionId: this.id,
stageId: this.stageId,
isOverallRanking: active ? 0 : 1,
schoolId: ''
}">
<el-button type="primary" :loading="uploading" class="ml20">上传文件<i
class="el-icon-upload2 el-icon--right"></i></el-button>
12 months ago
</el-upload>
</template>
<template v-else>
<p style="margin: -10px 0 13px;font-size: 14px;color: #e90000;">{{ faildData.tip }}</p>
<p type="primary"
style="margin-bottom: 10px;font-size: 14px;color: #062c87;text-decoration: underline;cursor: pointer;"
10 months ago
@click="showFaild">部分数据导入失败查看失败原因</p>
12 months ago
</template>
2 years ago
</div>
10 months ago
<span v-if="uploading" slot="footer" class="dialog-footer">
12 months ago
<el-button @click="cancelUpload">停止导入</el-button>
2 years ago
</span>
</el-dialog>
10 months ago
<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">
2 years ago
</el-date-picker>
10 months ago
<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>
2 years ago
</span>
</el-dialog>
</div>
2 years ago
</template>
<script>
10 months ago
import Util from '@/libs/util'
import axios from 'axios'
2 years ago
export default {
2 years ago
data () {
return {
id: +this.$route.query.id,
stageId: +this.$route.query.stageId,
index: +this.$route.query.index,
7 months ago
method: +this.$route.query.method,
2 years ago
competitionType: +this.$route.query.competitionType,
rule: +this.$route.query.rule,
1 year ago
searchTimer: null,
6 months ago
filter: {
provinceId: '',
cityId: '',
realSchoolId: '',
},
provinces: [],
cities: [],
schools: [],
keyword: this.$route.query.keyword || '',
2 years ago
teamCalculationMethods: [
{
id: 0,
name: '最高分'
},
{
id: 1,
name: '平均分'
},
{
id: 2,
name: '求和'
}
],
headers: {
token: sessionStorage.getItem("token")
},
active: '',
grades: [],
list: [],
page: +this.$route.query.page || 1,
2 years ago
pageSize: 10,
total: 0,
type: 0,
teamVisible: false,
teams: [],
memberVisible: false,
members: [],
importVisible: false,
uploadList: [],
uploadFaild: false,
12 months ago
uploading: false,
faildData: null,
2 years ago
curRow: {},
stageName: '',
totalScore: 0,
published: false,
uploadData: [],
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`]
})(),
2 years ago
},
1 year ago
uploaded: 0,
multipleSelection: [],
1 year ago
loading: false,
12 months ago
exporting: false,
1 year ago
isPointWeight: false
2 years ago
};
},
1 year ago
watch: {
keyword: function (val) {
clearTimeout(this.searchTimer);
this.searchTimer = setTimeout(() => {
this.$router.push({
path: '/matchRank',
query: {
...this.$route.query,
keyword: val
}
})
1 year ago
this.getRank();
}, 500);
}
},
2 years ago
mounted () {
6 months ago
this.getProvince()
this.getSchool()
2 years ago
this.getStage()
},
methods: {
// 获排名
getData () {
this.$post(`${this.api.selectTheLastSortStatus}?competitionId=${this.id}&stageId=${this.active || this.stageId}&isOverallRanking=${this.active ? 0 : 1}`).then(({ source }) => {
this.sourceType = source
this.type = source == 1 ? 1 : 0
this.getRank()
}).catch(res => { })
},
// 查询排名
getRank () {
6 months ago
const { filter } = this
12 months ago
this.loading = true
2 years ago
// 手动上传的排名接口
if (this.type) {
this.$post(this.api.manuallyUploadedRankings, {
pageNum: this.page,
pageSize: this.pageSize,
competitionId: this.id,
isOverallRanking: this.active ? 0 : 1,
1 year ago
stageId: this.active || this.stageId,
6 months ago
keyword: this.keyword,
...filter
2 years ago
}).then(({ message, publishStatus }) => {
// isRelease 0未发布,1已发布
this.published = publishStatus
this.sourceType = message.total ? message.records[0].isRelease : 0
this.list = message.records
this.total = message.total
this.getPublishTime()
12 months ago
this.loading = false
12 months ago
}).catch(res => {
this.loading = false
})
2 years ago
} else { // 默认排名接口
if (!this.active) {
// 总分排名
const ids = this.grades.map(e => e.stageId)
this.$post(this.api.overallStandingsInThePointsRace, {
pageNum: this.page,
pageSize: this.pageSize,
competitionId: this.id,
publicationType: this.type,
locationStageId: this.stageId,
1 year ago
stageIds: ids.splice(0, ids.length - 1),
6 months ago
keyword: this.keyword,
...filter
}).then(({ page, publishStatus, total }) => {
2 years ago
this.published = publishStatus
11 months ago
this.list = page || []
2 years ago
this.total = total
this.getPublishTime()
12 months ago
this.loading = false
12 months ago
}).catch(res => {
this.loading = false
})
1 year ago
} else {
// 阶段排名
6 months ago
this.$post(`${this.api.stageRaceRanking}?competitionId=${this.id}&stageId=${this.active}&pageNum=${this.page}&pageSize=${this.pageSize}&publicationType=${this.type}&keyword=${this.keyword}&provinceId=${filter.provinceId}&cityId=${filter.cityId}&realSchoolId=${filter.realSchoolId}`).then(({ page, total, publishStatus }) => {
2 years ago
this.published = publishStatus
this.list = page
this.total = total
this.getPublishTime()
12 months ago
this.loading = false
12 months ago
}).catch(res => {
this.loading = false
})
2 years ago
}
}
},
// 获取阶段
12 months ago
async getStage () {
this.loading = true
try {
const { page } = await this.$post(this.api.detailsOfCompetitionStage, {
pageNum: 1,
pageSize: 100,
contestId: this.id,
})
2 years ago
this.grades = page.records.slice(0, this.index + 1)
this.active = this.grades[this.index].stageId
// 积分赛才显示总分
this.rule == 0 && this.grades.push({
stageId: 0,
stageName: '总分'
})
this.getData()
12 months ago
} catch (e) {
this.loading = false
}
2 years ago
},
// 排序类型切换回调
12 months ago
async typeChange (val) {
await this.$post(`${this.api.toggleTheSortingMode}?competitionId=${this.id}&stageId=${this.active || this.stageId}&isOverallRanking=${this.active ? 0 : 1}&whetherToManuallyPublish=${this.type}`)
2 years ago
this.getRank()
},
initData () {
this.page = 1
this.getData()
},
// tab回调
tabChange (i) {
this.type = 0
this.active = i
this.initData()
},
6 months ago
// 获取省份
async getProvince () {
const { list } = await this.$get(this.api.queryProvince)
this.provinces = list
},
// 清除省份
clearProvince () {
this.filter.cityId = ''
},
// 省份选择回调
provinceChange () {
this.clearProvince()
this.getCity()
this.initData()
},
// 获取城市
async getCity () {
const id = this.filter.provinceId
if (id) {
const { list } = await this.$get(this.api.queryCity, {
provinceId: id
})
this.cities = list
}
},
// 获取学校
async getSchool () {
const { list } = await this.$get(this.api.querySchoolData)
this.schools = list
},
2 years ago
// 查看详情
show (row, i) {
this.teams = []
// 个人:跳转实验报告,团队:弹框显示成员列表
if (this.competitionType == 1) {
row.index = i + 1
this.curRow = row
this.teamVisible = true
this.stageName = this.grades.find(e => e.stageId == this.active).stageName
const data = {
pageNum: 1,
pageSize: 100,
competitionId: this.id,
teamId: row.teamId
}
// 阶段传当前阶段的id,总分传所有阶段的id
if (this.active) {
data.stageId = this.active
this.$post(this.api.stageTeamScoreDetails, data).then(({ page }) => {
this.teams = page.records
}).catch(res => { })
} else {
const ids = this.grades.map(e => e.stageId)
ids.pop()
data.stageIds = ids.splice(0, this.index + 1)
// 发布跟没发布调不同的接口
// if (this.published) {
1 year ago
this.$post(this.api.totalRankingScoreDetails, data).then(res => {
this.isPointWeight = res.isPointWeight
if (res.data.length) {
2 years ago
const result = []
// 合并数据
1 year ago
res.data.map(e => {
2 years ago
const team = e.stageTeamInformation
if (team.length) {
const teamCItem = this.teamCalculationMethods.find(n => n.id == e.teamCalculationMethod)
if (teamCItem) team[0].teamCalculationMethodName = teamCItem.name
team[0].rowspan = team.length
team.map(n => {
n = Object.assign(n, e)
})
result.push(...team)
} else {
e.rowspan = 1
result.push(e)
}
})
this.teams = result
2 years ago
}
2 years ago
}).catch(res => { })
// } else { // 没发布
// this.$post(this.api.totalRankingScoreDetails, data).then(({ page }) => {
// const list = page.records
// page.records.map((e, i) => {
// if (!list.find(n => n.stageId == e.stageId && n.rowspan)) {
// e.rowspan = list.filter(n => n.stageId == e.stageId).length
// this.$post(this.api.stageTeamScoreDetails, {
// pageNum: 1,
// pageSize: 100,
// competitionId: this.id,
// teamId: row.teamId,
// stageId: e.stageId
// }).then(({ page }) => {
// }).catch(res => {})
// }
// })
// let totalScore = 0
// this.totalScore = totalScore
// this.teams = list
// console.log("🚀 ~ file: matchRank.vue:346 ~ this.$post ~ list", list)
2 years ago
// }).catch(res => {})
2 years ago
// }
2 years ago
}
} else {
this.toReport(row)
}
},
// 跳转实验报告
toReport (row) {
7 months ago
this.$router.push(`/${this.method !== 1 ? 'trialReport' : 'theoryReport'}?reportId=${row.reportId}`)
2 years ago
},
1 year ago
handleSelectionChange (val) { // 多选
this.multipleSelection = val;
},
2 years ago
handleCurrentChange (val) { // 切换分页
this.$router.push({
path: '/matchRank',
query: {
...this.$route.query,
page: val
}
})
2 years ago
this.page = val;
this.getData();
},
1 year ago
// 导出(有勾选:就导勾选中的;没有勾选:就导全部)
1 year ago
async exportData () {
12 months ago
this.exporting = true
1 year ago
let { list } = this
if (this.multipleSelection.length) {
list = this.multipleSelection
1 year ago
} else {
// 没勾选的情况:先查询所有数据,pageSize传10000,再导出全部
// 手动上传的排名接口
if (this.type) {
const res = await this.$post(this.api.manuallyUploadedRankings, {
pageNum: 1,
pageSize: 10000,
competitionId: this.id,
isOverallRanking: this.active ? 0 : 1,
stageId: this.active || this.stageId
})
list = res.message.records
} else { // 默认排名接口
if (!this.active) {
// 总分排名
const ids = this.grades.map(e => e.stageId)
const res = await this.$post(this.api.overallStandingsInThePointsRace, {
pageNum: 1,
pageSize: 10000,
competitionId: this.id,
publicationType: this.type,
locationStageId: this.stageId,
stageIds: ids.splice(0, ids.length - 1)
})
list = res.page
} else { // 阶段排名
const res = await this.$post(`${this.api.stageRaceRanking}?competitionId=${this.id}&stageId=${this.active}&pageNum=1&pageSize=10000&publicationType=${this.type}`)
list = res.page
}
}
1 year ago
}
list.forEach((e, i) => {
e.serialNumber = i + 1
if (e.leaderName) e.userName = e.leaderName
})
axios.post(this.api[this.competitionType ? 'derivedRanking' : 'individualDerivedRanking'], list, {
headers: this.headers,
responseType: 'blob'
}).then((res) => {
10 months ago
Util.downloadFileDirect(`${this.grades.find(e => e.stageId == this.active).stageName}排名.xls`, new Blob([res.data]))
12 months ago
this.exporting = false
1 year ago
}).catch(res => { })
},
2 years ago
// 发布排名
12 months ago
async publishSubmit () {
await this.$post(this.api.publishRanking, {
competitionId: this.id,
isOverallRanking: this.active ? 0 : 1,
publicationType: this.type,
10 months ago
releaseTime: Util.formatDate("yyyy-MM-dd hh:mm:ss", this.publishTime),
12 months ago
stageId: this.active || this.stageId,
})
this.uploadData = []
2 years ago
},
// 发布排名确认
publish () {
this.$post(`${this.api.whetherToPublish}?competitionId=${this.id}&stageId=${this.active || this.stageId}&isOverallRanking=${this.active ? 0 : 1}&publicationType=${this.type}`).then(({ whetherToPublish }) => {
whetherToPublish ?
this.$confirm('排名已经发布,是否直接覆盖?', '提示', {
type: 'success',
closeOnClickModal: false
2 years ago
}).then(() => {
this.publishSubmit()
}).catch(() => { }) :
this.publishSubmit()
}).catch(res => { })
},
// 获取定时发布排名
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
2 years ago
} else {
this.published = false
this.timeId = ''
this.publishTime = ''
2 years ago
}
},
// 定时发布排名
async publishTimeSubmit () {
const { startTime, endTime } = this.grades[this.index]
10 months ago
const now = await Util.getNow()
if (now <= new Date(endTime)) return Util.errorMsg('当前阶段还在进行中,请在本阶段结束后再发布!')
this.publishSubmit()
12 months ago
// await this.$post(this.api.addCompetitionStageRankingTime, {
// competitionId: this.id,
// isOverallRanking: this.active ? 0 : 1,
// publicationType: this.type,
// stageId: this.active || this.stageId,
10 months ago
// releaseTime: Util.formatDate("yyyy-MM-dd hh:mm:ss", this.publishTime)
12 months ago
// })
10 months ago
Util.successMsg('发布成功')
2 years ago
this.getData()
2 years ago
this.uploaded = 0
2 years ago
this.publishVisible = false
},
// 取消发布排名
async cancelPublish (publish) {
const ids = this.grades.map(e => e.stageId)
const stageIds = ids.splice(0, ids.length - 1)
const query = []
stageIds.map(e => {
query.push('stageIds=' + e)
})
// 如果是发布排名,则先删除已发布的排名,再调发布排名的接口
// 如果是取消发布,则直接调取消发布的接口
if (publish) {
2 years ago
// 如果是手动发布,并且没有上传排名,则提示
if (this.type && !this.uploaded && !this.list.length) {
10 months ago
return Util.errorMsg('请先上传数据!')
2 years ago
} else {
this.publishTime = new Date()
this.publishVisible = true
}
2 years ago
} else {
try {
// 取消定时发布的接口跟取消普通发布的接口不一样
2 years ago
// if (this.timeId) {
// await this.$post(`${this.api.cancelCompetitionStageRankingTime}?competitionId=${this.id}&releaseId=${this.timeId}&isOverallRanking=${this.active ? 0 : 1}&stageId=${this.active || this.stageId}`)
2 years ago
// } else {
12 months ago
await this.$post(`${this.api.cancelRanking}?competitionId=${this.id}&isOverallRanking=${this.active ? 0 : 1}&${this.active ? 'stageIds=' + this.active : query.join('&')}&releaseId=${this.timeId}&publicationType=${this.type}`)
2 years ago
// }
2 years ago
this.sourceType = ''
this.type = 0
this.getData()
10 months ago
Util.successMsg('取消发布成功!')
2 years ago
} catch (error) { }
}
},
// 批量导入
batchImport () {
this.importVisible = true
this.uploadList = []
this.uploadFaild = false
},
// 模板下载
download () {
location.href = this.api[this.competitionType == 1 ? 'rankImportTeam' : 'rankImportPerson']
},
// 上传文件
handleExceed (files, fileList) {
10 months ago
Util.warningMsg(
2 years ago
`当前限制选择 1 个文件,如需更换,请删除上一个文件再重新选择!`
)
},
// 下载失败文件
showFaild () {
12 months ago
axios.get(`${this.api.rankExportFailure}?exportCode=${this.faildData.exportCode}&competitionId=${this.id}`, {
2 years ago
headers: this.headers,
responseType: 'blob'
}).then((res) => {
10 months ago
Util.downloadFileDirect(`批量导入排名管理失败数据导出.xls`, new Blob([res.data]))
2 years ago
}).catch(res => { })
},
12 months ago
uploadSuccess (res) {
this.uploading = false
2 years ago
this.uploadFaild = false
2 years ago
this.uploaded = 0
2 years ago
if (res.status === 200) {
12 months ago
this.getRank()
12 months ago
const { data } = res
if (data.exportCode) {
this.faildData = data
2 years ago
this.uploadFaild = true
} else {
2 years ago
this.uploaded = 1
2 years ago
this.importVisible = false
10 months ago
Util.successMsg(data.tip, 3000)
// Util.successMsg('请检查数据后,点击发布排名以发布数据!')
2 years ago
}
2 years ago
} else {
10 months ago
Util.errorMsg(res.message || "上传失败,请检查数据")
2 years ago
}
},
uploadError (err, file, fileList) {
12 months ago
this.uploading = false
2 years ago
this.$message({
message: "上传出错,请重试!",
type: "error",
center: true
})
},
12 months ago
async beforeUpload (file) {
this.uploading = true
if (this.list.length) {
12 months ago
await this.$post(`${this.api.cancelRanking}?competitionId=${this.id}&isOverallRanking=${this.active ? 0 : 1}&${this.active ? 'stageIds=' + this.active : query.join('&')}&releaseId=${this.timeId}&publicationType=${this.type}`)
12 months ago
}
},
2 years ago
beforeRemove (file, fileList) {
return this.$confirm(`确定移除 ${file.name}`)
},
handleRemove (file, fileList) {
this.uploadList = fileList
this.uploadFaild = false
},
12 months ago
cancelUpload () {
this.uploading = false
if (this.$refs.upload) this.$refs.upload.abort()
this.keyword = ''
this.getRank()
this.importVisible = false
},
back () {
this.$router.push(this.$store.state.innerReferrer)
}
2 years ago
}
2 years ago
};
</script>
<style lang="scss" scoped>
.table {
10 months ago
width: 100%;
border-collapse: collapse;
th,
td {
padding: 12px;
border: 1px solid #ebeef5;
}
&.tc {
text-align: center;
}
th {
text-align: center;
background-color: #f8faff;
}
.scores {
line-height: 1.6;
}
.score {
font-size: 16px;
font-weight: 600;
color: #9076ff;
}
2 years ago
}
10 months ago
12 months ago
/deep/.import-file {
10 months ago
.el-progress__text,
.el-progress,
.el-upload-list__item-status-label {
display: none !important;
}
12 months ago
}
2 years ago
</style>