|
|
|
@ -5,7 +5,7 @@ |
|
|
|
|
<div class="center-wrap"> |
|
|
|
|
<breadcrumb ref="breadcrumb" :data="'全部赛事/' + form.name"></breadcrumb> |
|
|
|
|
<div class="content"> |
|
|
|
|
<div class="tool flex-between"> |
|
|
|
|
<div :class="['tool flex-between', {logView: !logView}]"> |
|
|
|
|
<el-tabs v-model="curType" @tab-click="typeChange"> |
|
|
|
|
<el-tab-pane v-for="(item, index) in typeList" :key="index" :label="item.name" :name="item.id"></el-tab-pane> |
|
|
|
|
</el-tabs> |
|
|
|
@ -14,7 +14,7 @@ |
|
|
|
|
距离{{ endList[status] }}还有 |
|
|
|
|
<em>{{ end }}</em> |
|
|
|
|
</p> |
|
|
|
|
<a v-if="status != 4 || (status == 4 && curStage)" class="status" :class="{wait: status == 0,signing: status == 2,signed: status == 1,playing: status == 4,finish: status == 3 || status == 5}" @click.stop="signup">{{ statusList[status] }}</a> |
|
|
|
|
<a v-if="status != 4 || (status == 4 && curStage)" class="status" :class="{wait: status == 0,signing: status == 2,signed: status == 1,playing: status == 4,finish: status == 3 || status == 5}" :title="statusList[status]" @click.stop="signup">{{ statusList[status] }}</a> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="info"> |
|
|
|
@ -25,10 +25,10 @@ |
|
|
|
|
<div v-show="curType < 4"> |
|
|
|
|
<div class="l-title" id="part1"><img src="@/assets/img/label.png" alt=""> 竞赛信息</div> |
|
|
|
|
<div v-if="form.description" class="texts ql-editor" v-html="form.description"></div> |
|
|
|
|
<template v-if="form.contestAnnexList"> |
|
|
|
|
<template v-if="form.competitionAnnexList"> |
|
|
|
|
<h6 class="p-title">附件下载</h6> |
|
|
|
|
<ul class="files"> |
|
|
|
|
<li v-for="(item, i) in form.contestAnnexList" :key="i"> |
|
|
|
|
<li v-for="(item, i) in form.competitionAnnexList" :key="i"> |
|
|
|
|
<el-link v-if="item.canPreview" class="m-r-10" type="primary" @click="preview(item)">{{ item.fileName }}</el-link> |
|
|
|
|
<span v-else class="fileName">{{ item.fileName }}</span> |
|
|
|
|
<el-link type="primary" :underline="false" @click="download(item)">下载</el-link> |
|
|
|
@ -36,36 +36,37 @@ |
|
|
|
|
</ul> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="l-title"><img src="@/assets/img/label.png" alt=""> 赛程、规则与内容</div> |
|
|
|
|
<h6 class="rule-title">共{{ form.competitionStage.length }}个竞赛阶段,同一个团队每个成员只能参加一个阶段赛项</h6> |
|
|
|
|
<div v-for="(rule, i) in form.competitionStage" :key="i" class="rule"> |
|
|
|
|
<p style="font-size: 16px;color: #333;">{{ rule.stageName }}</p> |
|
|
|
|
<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">课程系统:{{ rule.systemName }}</p> |
|
|
|
|
<p v-if="rule.onlineButton">线上地点:{{ 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> |
|
|
|
|
<p>评分规则:{{ rule.scoreRule }}</p> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<template v-if="form.completeCompetitionSetup.competitionType"> |
|
|
|
|
<p>团队参赛人数限制:{{ rule.teamNumLimit || '不限制' }}</p> |
|
|
|
|
<p>团队成绩计算方式:{{ teamCalculationMethods.find(e => e.id == rule.teamCalculationMethod) && teamCalculationMethods.find(e => e.id == rule.teamCalculationMethod).name }}</p> |
|
|
|
|
</template> |
|
|
|
|
<p>阶段比赛结束后{{ rule.resultAnnouncementTime }}小时,公布阶段比赛成绩。</p> |
|
|
|
|
<div v-if="form.rule === 1" class="flex"> |
|
|
|
|
<p>晋级规则:</p> |
|
|
|
|
<div> |
|
|
|
|
<p v-if="rule.peopleLimit">本阶段成绩排名前{{ rule.peopleLimit }}队,可晋级下一阶段比赛</p> |
|
|
|
|
<p v-if="rule.percentageLimit">本阶段成绩排名前{{ rule.percentageLimit }}%,可晋级下一阶段比赛</p> |
|
|
|
|
<p v-if="rule.scoreLimit">本阶段成绩{{ rule.scoreLimit }}分,可晋级下一阶段比赛</p> |
|
|
|
|
<template v-if="form.releaseType"> |
|
|
|
|
<div class="l-title"><img src="@/assets/img/label.png" alt=""> 赛程、规则与内容</div> |
|
|
|
|
<h6 class="rule-title">共{{ form.competitionStage.length }}个竞赛阶段,同一个团队每个成员只能参加一个阶段赛项</h6> |
|
|
|
|
<div v-for="(rule, i) in form.competitionStage" :key="i" class="rule"> |
|
|
|
|
<p style="font-size: 16px;color: #333;">{{ rule.stageName }}</p> |
|
|
|
|
<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">课程系统:{{ rule.systemName }}</p> |
|
|
|
|
<p v-if="rule.onlineButton">线上地点:{{ 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> |
|
|
|
|
<p>评分规则:{{ rule.scoreRule }}</p> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<template v-if="form.completeCompetitionSetup.competitionType"> |
|
|
|
|
<p>团队参赛人数限制:{{ rule.teamNumLimit || '不限制' }}</p> |
|
|
|
|
<p>团队成绩计算方式:{{ teamCalculationMethods.find(e => e.id == rule.teamCalculationMethod) && teamCalculationMethods.find(e => e.id == rule.teamCalculationMethod).name }}</p> |
|
|
|
|
</template> |
|
|
|
|
<p>阶段比赛结束后{{ rule.resultAnnouncementTime }}小时,公布阶段比赛成绩。</p> |
|
|
|
|
<div v-if="form.rule === 1" class="flex"> |
|
|
|
|
<p>晋级规则:</p> |
|
|
|
|
<div> |
|
|
|
|
<p v-if="rule.peopleLimit">本阶段成绩排名前{{ rule.peopleLimit }}队,可晋级下一阶段比赛</p> |
|
|
|
|
<p v-if="rule.percentageLimit">本阶段成绩排名前{{ rule.percentageLimit }}%,可晋级下一阶段比赛</p> |
|
|
|
|
<p v-if="rule.scoreLimit">本阶段成绩{{ rule.scoreLimit }}分,可晋级下一阶段比赛</p> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<!-- 进展 --> |
|
|
|
|
<div class="l-title" id="part2"><img src="@/assets/img/label.png" alt=""> 竞赛进展</div> |
|
|
|
@ -106,7 +107,7 @@ |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<!-- 竞赛排名 --> |
|
|
|
|
<template v-if="curType == 4 && form.competitionRegistration && form.competitionRegistration.teamId"> |
|
|
|
|
<template v-if="curType == 4"> |
|
|
|
|
<div class="l-title"><img src="@/assets/img/label.png" alt=""> 竞赛排名</div> |
|
|
|
|
<el-tabs v-model="curArch" @tab-click="getRank"> |
|
|
|
|
<el-tab-pane v-for="(item, index) in arches" :key="index" :label="item.stageName + '排名'" :name="item.stageId"></el-tab-pane> |
|
|
|
@ -186,7 +187,7 @@ |
|
|
|
|
<tr> |
|
|
|
|
<th width="130">指导老师:</th> |
|
|
|
|
<td v-if="info.team.captain === 0 || !form.completeCompetitionSetup.competitionType"> |
|
|
|
|
<div class="plus"> |
|
|
|
|
<div v-if="status != 5" class="plus"> |
|
|
|
|
<i class="el-icon-circle-plus-outline icon" @click="addAdvisor"></i> |
|
|
|
|
</div> |
|
|
|
|
<div v-for="(item, i) in info.teamInstructors" :key="i" class="line"> |
|
|
|
@ -225,12 +226,12 @@ |
|
|
|
|
<td> |
|
|
|
|
<table class="table tc"> |
|
|
|
|
<tr> |
|
|
|
|
<th width="80">序号</th> |
|
|
|
|
<th>赛项阶段名称</th> |
|
|
|
|
<th width="70">序号</th> |
|
|
|
|
<th width="120">赛项阶段名称</th> |
|
|
|
|
<template v-if="form.completeCompetitionSetup.competitionType"> |
|
|
|
|
<th width="110">参赛人数限制</th> |
|
|
|
|
<th>允许参赛人员</th> |
|
|
|
|
<th v-if="info.team.captain === 0 && form.rule === 0">总分</th> |
|
|
|
|
<th v-if="info.team.captain === 0 && form.rule === 0" width="70">总分</th> |
|
|
|
|
</template> |
|
|
|
|
<th>竞赛成绩</th> |
|
|
|
|
</tr> |
|
|
|
@ -241,13 +242,23 @@ |
|
|
|
|
<template v-if="form.completeCompetitionSetup.competitionType"> |
|
|
|
|
<td>{{ item.teamNumLimit || '不限制' }}</td> |
|
|
|
|
<td> |
|
|
|
|
<span class="m-r-5">{{ item.teamParticipantIds || '无' }}</span> |
|
|
|
|
<el-button v-if="info.team.captain === 0" type="danger" size="mini" @click="selectPar(item)">修改</el-button> |
|
|
|
|
<template v-if="item.participants"> |
|
|
|
|
<el-tag |
|
|
|
|
v-for="tag in item.participants" |
|
|
|
|
:key="tag.name" |
|
|
|
|
class="m-r-5" |
|
|
|
|
:closable="info.team.captain === 0" |
|
|
|
|
@close="removePar(tag, item)"> |
|
|
|
|
{{tag.name}} |
|
|
|
|
</el-tag> |
|
|
|
|
</template> |
|
|
|
|
<span v-else class="m-r-5">无</span> |
|
|
|
|
<i v-if="info.team.captain === 0" class="el-icon-edit icon" @click="selectPar(item)"></i> |
|
|
|
|
</td> |
|
|
|
|
<td v-if="info.team.captain === 0 && form.rule === 0 && !i" :rowspan="info.stages.length">{{ info.totalScore }}</td> |
|
|
|
|
</template> |
|
|
|
|
<td> |
|
|
|
|
<span v-if="item.score" class="m-r-10">分数{{item.score}}</span> |
|
|
|
|
<span v-if="item.score > 0" class="m-r-10">分数{{item.score}}</span> |
|
|
|
|
<el-button type="text" :disabled="item.showDetail && item.resultsDetails === 1 || (form.completeCompetitionSetup.competitionType && !item.reportId) || (form.completeCompetitionSetup.competitionType === 0 && !item.reportId)" @click="show(item)">查看成绩详情</el-button> |
|
|
|
|
</td> |
|
|
|
|
</tr> |
|
|
|
@ -273,6 +284,12 @@ |
|
|
|
|
<p>队长:{{ info.caption.userName }}</p> |
|
|
|
|
<el-button type="primary" @click="transfer">转让队长</el-button> |
|
|
|
|
</div> |
|
|
|
|
<el-alert |
|
|
|
|
style="margin: 10px 0;" |
|
|
|
|
title="请确保团队成员人数满足大赛要求,否则无法参加比赛" |
|
|
|
|
type="success" |
|
|
|
|
:closable="false"> |
|
|
|
|
</el-alert> |
|
|
|
|
<el-table :data="info.teamDetail" stripe header-align="center"> |
|
|
|
|
<el-table-column 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> |
|
|
|
@ -344,7 +361,7 @@ |
|
|
|
|
<el-checkbox-group v-model="checkedMembers"> |
|
|
|
|
<el-checkbox v-for="(item, i) in chooses" :key="i" :label="item.accountId">{{ item.userName }}</el-checkbox> |
|
|
|
|
</el-checkbox-group> |
|
|
|
|
<p v-if="info.teamLimit" style="margin-top: 15px;font-size: 12px;">注:当前阶段限制1人参赛,且此竞赛每个成员只能参加一个阶段赛项。</p> |
|
|
|
|
<p v-if="info.teamLimit && curRow.teamNumLimit" style="margin-top: 15px;font-size: 12px;">注:当前阶段限制{{ curRow.teamNumLimit }}人参赛,且此竞赛每个成员只能参加一个阶段赛项。</p> |
|
|
|
|
<span slot="footer" class="dialog-footer"> |
|
|
|
|
<el-button size="small" type="primary" @click="chooseSubmit">确定</el-button> |
|
|
|
|
<el-button size="small" @click="chooseVisible = false">取消</el-button> |
|
|
|
@ -385,7 +402,7 @@ |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<script> |
|
|
|
|
import { mapMutations } from "vuex"; |
|
|
|
|
import { mapState, mapMutations } from "vuex"; |
|
|
|
|
import breadcrumb from '@/components/breadcrumb' |
|
|
|
|
import util from '@/libs/util' |
|
|
|
|
import Setting from "@/setting" |
|
|
|
@ -394,6 +411,7 @@ export default { |
|
|
|
|
name: 'matchdetail', |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
|
token: util.local.get(Setting.tokenKey), |
|
|
|
|
id: +this.$route.query.id, |
|
|
|
|
end: '', |
|
|
|
|
status: '', |
|
|
|
@ -493,6 +511,11 @@ export default { |
|
|
|
|
lastType: 1 |
|
|
|
|
}; |
|
|
|
|
}, |
|
|
|
|
computed: { |
|
|
|
|
...mapState("user", [ |
|
|
|
|
'logView' |
|
|
|
|
]), |
|
|
|
|
}, |
|
|
|
|
components: { |
|
|
|
|
breadcrumb |
|
|
|
|
}, |
|
|
|
@ -514,6 +537,7 @@ export default { |
|
|
|
|
'SET_SOURCE' |
|
|
|
|
]), |
|
|
|
|
getData() { // 获取竞赛信息 |
|
|
|
|
clearInterval(this.timer) |
|
|
|
|
this.$post(`${this.api.getCompetition}?competitionId=${this.id}`).then(({ competition }) => { |
|
|
|
|
const list = competition.competitionAnnexList |
|
|
|
|
// 附件 |
|
|
|
@ -523,26 +547,35 @@ export default { |
|
|
|
|
e.canPreview = util.canPreview(filePath.substr(filePath.lastIndexOf('.') + 1)) |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
const arches = [] |
|
|
|
|
// 积分赛才有总分排名 |
|
|
|
|
competition.rule === 0 && arches.push({ |
|
|
|
|
stageId: '0', |
|
|
|
|
stageName: '总分' |
|
|
|
|
}) |
|
|
|
|
arches.push(...competition.competitionStage) |
|
|
|
|
arches.map(e => e.stageId = e.stageId + '') |
|
|
|
|
this.arches = arches |
|
|
|
|
|
|
|
|
|
this.form = competition |
|
|
|
|
const reg = competition.competitionRegistration |
|
|
|
|
// 报名后才显示参赛信息 |
|
|
|
|
if (reg) { |
|
|
|
|
this.typeList.push({ |
|
|
|
|
id: '5', |
|
|
|
|
name: '参赛信息' |
|
|
|
|
}) |
|
|
|
|
this.getInfo() |
|
|
|
|
// 选择的赛事类型为设置完整比赛的才展示竞赛排名和参赛信息 |
|
|
|
|
if (competition.releaseType) { |
|
|
|
|
const arches = [] |
|
|
|
|
// 积分赛才有总分排名 |
|
|
|
|
competition.rule === 0 ? |
|
|
|
|
arches.push({ |
|
|
|
|
stageId: '0', |
|
|
|
|
stageName: '总分' |
|
|
|
|
}) : |
|
|
|
|
(this.curArch = competition.competitionStage[0].stageId + '') |
|
|
|
|
arches.push(...competition.competitionStage) |
|
|
|
|
arches.map(e => e.stageId = e.stageId + '') |
|
|
|
|
this.arches = arches |
|
|
|
|
|
|
|
|
|
// 报名后才显示参赛信息 |
|
|
|
|
if (reg && !this.typeList.find(e => e.id == 5)) { |
|
|
|
|
this.typeList.push({ |
|
|
|
|
id: '5', |
|
|
|
|
name: '参赛信息' |
|
|
|
|
}) |
|
|
|
|
this.getInfo() |
|
|
|
|
} |
|
|
|
|
this.token() && this.getRank() |
|
|
|
|
} else { |
|
|
|
|
this.typeList = this.typeList.slice(0, 3) |
|
|
|
|
} |
|
|
|
|
this.getRank() |
|
|
|
|
this.$refs.breadcrumb.update('全部赛事/' + competition.name) |
|
|
|
|
this.handleStatus() |
|
|
|
|
}).catch(err => {}) |
|
|
|
@ -582,10 +615,13 @@ export default { |
|
|
|
|
endText = '阶段开始' |
|
|
|
|
total = startTime - now |
|
|
|
|
break |
|
|
|
|
} else if (now >= startTime && now <= endTime && !e.count && e.method !== 2) { // 阶段比赛进行中,显示进入比赛按钮 |
|
|
|
|
if (form.competitionRegistration) this.statusList[4] = '进入' + e.stageName |
|
|
|
|
} else if (now >= startTime && now <= endTime && e.method !== 2) { // 阶段比赛进行中,显示进入比赛按钮 |
|
|
|
|
if (form.competitionRegistration) { // 报名了才能进入比赛 |
|
|
|
|
this.statusList[4] = e.count ? '已提交' : '进入' + e.stageName |
|
|
|
|
curStage = e |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
endText = '阶段结束' |
|
|
|
|
curStage = e |
|
|
|
|
total = endTime - now |
|
|
|
|
break |
|
|
|
|
} else if (stages[i + 1] && now > endTime && now < new Date(stages[i + 1].startTime)) { // 过了该阶段的结束时间,但是没到下个阶段的开始时间,不显示进入比赛按钮 |
|
|
|
@ -618,7 +654,7 @@ export default { |
|
|
|
|
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 (form.status === 5) { // 竞赛结束,清除定时器 |
|
|
|
|
} else if (this.status === 5) { // 竞赛结束,清除定时器 |
|
|
|
|
clearInterval(this.timer) |
|
|
|
|
} |
|
|
|
|
}, 1000) |
|
|
|
@ -639,6 +675,21 @@ export default { |
|
|
|
|
info.caption = caption ? caption : {} |
|
|
|
|
info.person = info.personalDetail || info.teamDetail.find(e => e.accountId == info.team.accountId) |
|
|
|
|
this.originInfo = JSON.parse(JSON.stringify(info)) |
|
|
|
|
// 把参赛人员的名字和accountId处理成一个数组 |
|
|
|
|
info.stages && info.stages.map(e => { |
|
|
|
|
if (e.participantAccountIds && e.teamParticipantIds) { |
|
|
|
|
const accountIds = e.participantAccountIds.split(',').map(n => +n) |
|
|
|
|
const names = e.teamParticipantIds.split(',') |
|
|
|
|
const participants = [] |
|
|
|
|
accountIds.map((n, i) => { |
|
|
|
|
participants.push({ |
|
|
|
|
id: n, |
|
|
|
|
name: names[i] |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
e.participants = participants |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
// 设置定时器,阶段比赛结束后公布成绩,到时间后调本接口 |
|
|
|
|
const now = Date.now() |
|
|
|
|
this.form.competitionStage.map(e => { |
|
|
|
@ -666,6 +717,7 @@ export default { |
|
|
|
|
invitationCode, |
|
|
|
|
whetherSignUp: 0 |
|
|
|
|
}).then(res => { |
|
|
|
|
this.editing = false |
|
|
|
|
this.getInfo() |
|
|
|
|
showMsg && util.successMsg('保存成功') |
|
|
|
|
}).catch(res => {}) |
|
|
|
@ -758,7 +810,7 @@ export default { |
|
|
|
|
isOverallRanking: cur ? 0 : 1 |
|
|
|
|
} |
|
|
|
|
data.stageIds = cur ? cur: '' |
|
|
|
|
this.$post(this.api.frontOfficeCompetitionRanking, data).then(({ list }) => { |
|
|
|
|
this.token && this.$post(this.api.frontOfficeCompetitionRanking, data).then(({ list }) => { |
|
|
|
|
this.ranks = list |
|
|
|
|
}).catch(res => {}) |
|
|
|
|
}, |
|
|
|
@ -844,7 +896,17 @@ export default { |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
if (!start) { |
|
|
|
|
this.$confirm('确定要踢出该成员吗?', '提示', { |
|
|
|
|
let include |
|
|
|
|
for (const e of this.info.stages) { |
|
|
|
|
if (e.participantAccountIds) { |
|
|
|
|
const ids = e.participantAccountIds.split(',').map(n => +n) |
|
|
|
|
if (ids.includes(row.accountId)) { |
|
|
|
|
include = e.stageName |
|
|
|
|
break |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
this.$confirm(include ? `该成员已被指定参加${include},踢出后需重新指定成员参加,是否确认踢出团队?` : '确定要踢出该成员吗?', '提示', { |
|
|
|
|
type: 'warning' |
|
|
|
|
}).then(() => { |
|
|
|
|
this.$post(`${this.api.removeTheLine}?teamId=${this.info.teamId}&competitionId=${this.id}&accountId=${row.accountId}`).then(res => { |
|
|
|
@ -854,6 +916,22 @@ export default { |
|
|
|
|
}).catch(() => {}) |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
// 移除参赛人员 |
|
|
|
|
removePar(e, stage) { |
|
|
|
|
this.$confirm('确定要移除该成员吗?', '提示', { |
|
|
|
|
type: 'warning' |
|
|
|
|
}).then(() => { |
|
|
|
|
this.$post(this.api.cancelParticipant, { |
|
|
|
|
accountId: e.id, |
|
|
|
|
competitionId: this.id, |
|
|
|
|
stageId: stage.stageId, |
|
|
|
|
teamId: this.info.teamId |
|
|
|
|
}).then(res => { |
|
|
|
|
util.successMsg('移除成功') |
|
|
|
|
this.getInfo() |
|
|
|
|
}).catch(res => {}) |
|
|
|
|
}).catch(() => {}) |
|
|
|
|
}, |
|
|
|
|
// 选择参赛人员 |
|
|
|
|
selectPar(row) { |
|
|
|
|
const item = this.form.competitionStage.find(e => e.stageId == row.stageId) |
|
|
|
@ -871,7 +949,7 @@ export default { |
|
|
|
|
// 获取已经允许参赛的人员accountId |
|
|
|
|
stages.map(e => { |
|
|
|
|
const id = e.participantAccountIds |
|
|
|
|
id && ids.push(...id.split(',').map(n => +n)) |
|
|
|
|
if (e.stageId != row.stageId && id) ids.push(...id.split(',').map(n => +n)) |
|
|
|
|
}) |
|
|
|
|
ids = [...new Set(ids)] |
|
|
|
|
teamDetail.map(e => { |
|
|
|
@ -882,6 +960,7 @@ export default { |
|
|
|
|
this.chooses = this.info.teamDetail |
|
|
|
|
} |
|
|
|
|
this.curRow = row |
|
|
|
|
this.checkedMembers = [] |
|
|
|
|
this.chooseVisible = true |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -891,7 +970,7 @@ export default { |
|
|
|
|
const accountIds = this.checkedMembers |
|
|
|
|
if (!accountIds.length) return util.errorMsg('请选择参赛成员!') |
|
|
|
|
const limit = this.curRow.teamNumLimit // 参赛人数限制 |
|
|
|
|
if (accountIds.length > limit) return util.errorMsg(`请选择${limit}个以下参赛成员!`) // 选择的参赛人员个数不能大于参赛人数限制 |
|
|
|
|
if (limit && accountIds.length > limit) return util.errorMsg(`请选择${limit}个以下参赛成员!`) // 选择的参赛人员个数不能大于参赛人数限制 |
|
|
|
|
this.$post(this.api.stageSelectParticipants, { |
|
|
|
|
accountIds, |
|
|
|
|
competitionId: this.id, |
|
|
|
@ -1018,6 +1097,7 @@ export default { |
|
|
|
|
if (util.local.get(Setting.tokenKey)) { |
|
|
|
|
const { competitionType } = form.completeCompetitionSetup |
|
|
|
|
if (status == 4) { // 进入比赛 |
|
|
|
|
if (this.curStage.count) return // 参加过比赛不让参加 |
|
|
|
|
if (form.competitionRegistration.isDisable === 1) return util.errorMsg('当前用户已被禁赛,如有疑问,请联系平台管理员。') // 被禁用的用户不能进入大赛 |
|
|
|
|
// 团队赛,则判断是否为参赛人员 |
|
|
|
|
if (competitionType) { |
|
|
|
@ -1049,8 +1129,8 @@ export default { |
|
|
|
|
type: 'success' |
|
|
|
|
}).then(() => { |
|
|
|
|
this.$post(`${this.api.cancelRegistration}?competitionId=${this.id}`).then(res => { |
|
|
|
|
this.getData() |
|
|
|
|
this.$message.success('取消报名成功') |
|
|
|
|
this.getData() |
|
|
|
|
}).catch(res => {}) |
|
|
|
|
}).catch(() => {}) |
|
|
|
|
} |
|
|
|
@ -1165,6 +1245,9 @@ export default { |
|
|
|
|
top: 64px; |
|
|
|
|
margin-bottom: 20px; |
|
|
|
|
background-color: #fff; |
|
|
|
|
&.logView { |
|
|
|
|
z-index: 0; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.info .meta{ |
|
|
|
|
padding: 16px 0; |
|
|
|
@ -1177,6 +1260,7 @@ export default { |
|
|
|
|
align-items: center; |
|
|
|
|
} |
|
|
|
|
.status { |
|
|
|
|
max-width: 120px; |
|
|
|
|
padding: 0 16px; |
|
|
|
|
margin-left: 20px; |
|
|
|
|
line-height: 34px; |
|
|
|
@ -1185,6 +1269,7 @@ export default { |
|
|
|
|
background-color: #52C41A; |
|
|
|
|
border-radius: 4px; |
|
|
|
|
cursor: pointer; |
|
|
|
|
@include ellipsis(); |
|
|
|
|
&.wait { |
|
|
|
|
background-color: #FAAD14; |
|
|
|
|
} |
|
|
|
@ -1449,6 +1534,9 @@ export default { |
|
|
|
|
font-size: 16px; |
|
|
|
|
color: #7a7a7a; |
|
|
|
|
cursor: pointer; |
|
|
|
|
&:hover { |
|
|
|
|
color: #007EFF; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.plus { |
|
|
|
|
margin-bottom: 10px; |
|
|
|
|