|
|
|
@ -260,9 +260,9 @@ |
|
|
|
|
<th>竞赛阶段:</th> |
|
|
|
|
<td> |
|
|
|
|
<div v-if="showButton" class="m-b-10 text-right"> |
|
|
|
|
<el-button type="primary" :disabled="status > 3" :loading="allocating" |
|
|
|
|
<el-button type="primary" :disabled="status > 3 || hasReport" :loading="allocating" |
|
|
|
|
@click="automaticAllocationMember">{{ |
|
|
|
|
assignRecord.assignOrNot && status < 3 ? '取消' : '' }}自动分配阶段成员</el-button> |
|
|
|
|
assignRecord.assignOrNot && status < 3 ? '取消' : '' }}重新自动分配阶段成员</el-button> |
|
|
|
|
</div> |
|
|
|
|
<table class="table tc"> |
|
|
|
|
<tr> |
|
|
|
@ -297,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="stageTip.length && stageTip[i]" effect="dark" :content="stageTip[i]" |
|
|
|
|
<el-tooltip v-if="stageTip && stageTip[i + 1]" effect="dark" :content="stageTip[i + 1]" |
|
|
|
|
placement="bottom"> |
|
|
|
|
<el-tag type="danger" class="m-l-5">异常</el-tag> |
|
|
|
|
</el-tooltip> |
|
|
|
@ -654,6 +654,7 @@ export default { |
|
|
|
|
teamErrors: [], |
|
|
|
|
stageTip: null, |
|
|
|
|
showButton: false, |
|
|
|
|
hasReport: false, |
|
|
|
|
assignRecord: {}, |
|
|
|
|
allocating: false, |
|
|
|
|
}; |
|
|
|
@ -911,7 +912,7 @@ export default { |
|
|
|
|
teamId: this.info.teamId |
|
|
|
|
}) |
|
|
|
|
this.teamErrors = res.teamTip.split(';').filter(e => e) |
|
|
|
|
if (Object.keys(res.stageTip)) { |
|
|
|
|
if (Object.keys(res.stageTip).length) { |
|
|
|
|
this.stageTip = res.stageTip |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
@ -1143,9 +1144,14 @@ export default { |
|
|
|
|
}, |
|
|
|
|
// 获取团队分配按钮展示与否 |
|
|
|
|
async getTeamAssign () { |
|
|
|
|
const res = await this.$post(`${this.api.teamAssignmentButtonDisplay}?competitionId=${this.id}&teamId=${this.info.teamId}`) |
|
|
|
|
const param = `?competitionId=${this.id}&teamId=${this.info.teamId}` |
|
|
|
|
const res = await this.$post(this.api.teamAssignmentButtonDisplay + param) |
|
|
|
|
this.showButton = res.showButton // 自动分配按钮是否展示 |
|
|
|
|
this.assignRecord = res.teamRecord || {} // 展示成自动分配 or 取消分配 |
|
|
|
|
|
|
|
|
|
// 查询团队是否存在实验报告 |
|
|
|
|
const res1 = await this.$post(this.api.whetherTheTeamHasReport + param) |
|
|
|
|
this.hasReport = res1.hasReport |
|
|
|
|
this.allocating = false |
|
|
|
|
}, |
|
|
|
|
// 移除参赛人员 |
|
|
|
@ -1349,14 +1355,15 @@ export default { |
|
|
|
|
const whether = this.assignRecord.assignOrNot && this.status < 3 |
|
|
|
|
const tips = this.status < 3 ? |
|
|
|
|
whether ? |
|
|
|
|
'确定取消自动分配阶段成员?' : |
|
|
|
|
'是否要启用自动分配成员参加阶段赛项?启用后,将在报名结束后给团队成员自动分配阶段参赛人员。' |
|
|
|
|
: '确定立即自动分配阶段成员?' |
|
|
|
|
'确定取消重新自动分配阶段成员?' : |
|
|
|
|
'<p style="margin-bottom: 5px;font-size: 16px;color: #f00;">是否要启用重新自动分配成员参加阶段赛项?</p>启用后,将在报名结束后给团队成员自动分配阶段参赛人员。' |
|
|
|
|
: '确定立即重新自动分配阶段成员?' |
|
|
|
|
this.$confirm(tips, '提示', { |
|
|
|
|
cancelButtonText: '否', |
|
|
|
|
confirmButtonText: '是', |
|
|
|
|
type: 'success', |
|
|
|
|
closeOnClickModal: false, |
|
|
|
|
dangerouslyUseHTMLString: true, |
|
|
|
|
}).then(async () => { |
|
|
|
|
this.allocating = true |
|
|
|
|
// 报名结束之前则调修改接口,否则调自动分配接口 |
|
|
|
|