|
|
|
@ -76,7 +76,7 @@ |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<template v-if="form.completeCompetitionSetup.competitionType"> |
|
|
|
|
<p>每个团队参赛人数限制:{{ rule.customNumber || '不限制' }}</p> |
|
|
|
|
<p>每个团队参赛人数限制:{{ rule.teamNumLimit ? rule.customNumber : '不限制' }}</p> |
|
|
|
|
<p>团队成绩计算方式:{{ teamCalculationMethods.find(e => e.id == rule.teamCalculationMethod) && |
|
|
|
|
teamCalculationMethods.find(e => e.id == rule.teamCalculationMethod).name }}</p> |
|
|
|
|
</template> |
|
|
|
@ -272,7 +272,8 @@ |
|
|
|
|
<th width="110">参赛人数限制</th> |
|
|
|
|
<th> |
|
|
|
|
允许参赛人员 |
|
|
|
|
<el-tooltip v-if="stageTip" effect="dark" :content="stageTip" placement="bottom"> |
|
|
|
|
<el-tooltip v-if="stageTip" effect="dark" content="阶段参赛人员异常,请尽快按照阶段赛规则调整,否则可能影响比赛成绩!" |
|
|
|
|
placement="bottom"> |
|
|
|
|
<i class="info el-icon-warning" style="margin-right: 10px;color: #ff1650;"></i> |
|
|
|
|
</el-tooltip> |
|
|
|
|
</th> |
|
|
|
@ -285,7 +286,7 @@ |
|
|
|
|
<td>{{ i + 1 }}</td> |
|
|
|
|
<td>{{ item.stageName || form.name }}</td> |
|
|
|
|
<template v-if="form.completeCompetitionSetup.competitionType"> |
|
|
|
|
<td>{{ item.customNumber || '不限制' }}</td> |
|
|
|
|
<td>{{ item.teamNumLimit ? item.customNumber : '不限制' }}</td> |
|
|
|
|
<td> |
|
|
|
|
<template v-if="item.participants"> |
|
|
|
|
<el-tag v-for="tag in item.participants" :key="tag.name" class="m-r-5 m-b-5" |
|
|
|
@ -296,7 +297,7 @@ |
|
|
|
|
<span v-else class="m-r-5">无</span> |
|
|
|
|
<i v-if="info.team.captain === 0 && status < 4" class="el-icon-edit icon" |
|
|
|
|
@click="selectPar(item)"></i> |
|
|
|
|
<el-tooltip v-if="stageTips.length && stageTips[i]" effect="dark" :content="stageTips[i]" |
|
|
|
|
<el-tooltip v-if="stageTip.length && stageTip[i]" effect="dark" :content="stageTip[i]" |
|
|
|
|
placement="bottom"> |
|
|
|
|
<el-tag type="danger" class="m-l-5">异常</el-tag> |
|
|
|
|
</el-tooltip> |
|
|
|
@ -651,8 +652,7 @@ export default { |
|
|
|
|
now: '', |
|
|
|
|
allocated: 0, |
|
|
|
|
teamErrors: [], |
|
|
|
|
stageTip: '', |
|
|
|
|
stageTips: [], |
|
|
|
|
stageTip: null, |
|
|
|
|
showButton: false, |
|
|
|
|
assignRecord: {}, |
|
|
|
|
allocating: false, |
|
|
|
@ -911,9 +911,8 @@ export default { |
|
|
|
|
teamId: this.info.teamId |
|
|
|
|
}) |
|
|
|
|
this.teamErrors = res.teamTip.split(';').filter(e => e) |
|
|
|
|
if (res.stageTip) { |
|
|
|
|
if (Object.keys(res.stageTip)) { |
|
|
|
|
this.stageTip = res.stageTip |
|
|
|
|
this.stageTips = res.stageTip.split(';').filter(e => e) |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
// 编辑保存 |
|
|
|
@ -1211,8 +1210,8 @@ export default { |
|
|
|
|
chooseSubmit () { |
|
|
|
|
const accountIds = this.checkedMembers |
|
|
|
|
if (!accountIds.length) return Util.errorMsg('请选择参赛成员!') |
|
|
|
|
const limit = this.curRow.teamNumLimit // 参赛人数限制 |
|
|
|
|
if (limit && accountIds.length > limit) return Util.errorMsg(`请选择${this.curRow.customNumber}个以下参赛成员!`) // 选择的参赛人员个数不能大于参赛人数限制 |
|
|
|
|
const { customNumber, teamNumLimit } = this.curRow // 参赛人数限制 |
|
|
|
|
if (teamNumLimit && accountIds.length > customNumber) return Util.errorMsg(`请选择${this.curRow.customNumber}个以下参赛成员!`) // 选择的参赛人员个数不能大于参赛人数限制 |
|
|
|
|
this.$post(this.api.stageSelectParticipants, { |
|
|
|
|
accountIds, |
|
|
|
|
competitionId: this.id, |
|
|
|
@ -1324,10 +1323,10 @@ export default { |
|
|
|
|
afterCreateTeam () { |
|
|
|
|
// 赛事自动分配状态为开启,则直接提示;否则弹框询问是否要启用团队自动分配 |
|
|
|
|
if (this.allocated) { |
|
|
|
|
Util.successMsg('团队创建成功,系统将自动帮您分配阶段参赛成员,您也可以到参数信息进行指定') |
|
|
|
|
Util.successMsg('团队创建成功,系统将在报名结束后自动帮您分配阶段参赛成员,您也可以到参数信息进行指定') |
|
|
|
|
} else { |
|
|
|
|
// 未分配 |
|
|
|
|
this.$confirm('是否要启用自动分配成员参加阶段赛项', '提示', { |
|
|
|
|
this.$confirm('报名成功!是否要启用自动分配成员参加阶段赛项?启用后,将在报名结束后给团队成员自动分配阶段参赛人员。', '提示', { |
|
|
|
|
cancelButtonText: '否', |
|
|
|
|
confirmButtonText: '是', |
|
|
|
|
type: 'success', |
|
|
|
@ -1348,7 +1347,12 @@ export default { |
|
|
|
|
// 自动分配 |
|
|
|
|
automaticAllocationMember () { |
|
|
|
|
const whether = this.assignRecord.assignOrNot && this.status < 3 |
|
|
|
|
this.$confirm(`确定${whether ? '取消' : ''}自动分配阶段成员`, '提示', { |
|
|
|
|
const tips = this.status < 3 ? |
|
|
|
|
whether ? |
|
|
|
|
'确定取消自动分配阶段成员?' : |
|
|
|
|
'是否要启用自动分配成员参加阶段赛项?启用后,将在报名结束后给团队成员自动分配阶段参赛人员。' |
|
|
|
|
: '确定立即自动分配阶段成员?' |
|
|
|
|
this.$confirm(tips, '提示', { |
|
|
|
|
cancelButtonText: '否', |
|
|
|
|
confirmButtonText: '是', |
|
|
|
|
type: 'success', |
|
|
|
|