赛事修复

dev_202412
yujialong 10 months ago
parent 3e4e9f5329
commit 7bea692dfb
  1. 1
      src/api/index.js
  2. 23
      src/pages/match/details/index.vue
  3. 2
      src/pages/record/show/index.vue
  4. 2
      src/pages/station/preview/index.vue

@ -159,6 +159,7 @@ export default {
teamAssignmentButtonDisplay: `competition/competitionTeamAutomaticAllocationRecord/teamAssignmentButtonDisplay`,
assignedPlayer: `competition/competition/automaticAllocation/assignedPlayer`,
competitionTeamAutomaticAllocationRecordSave: `competition/competitionTeamAutomaticAllocationRecord/saveOrUpdate`,
whetherTheTeamHasReport: `competition/competitionAutomaticAllocationRecord/whetherTheTeamHasReport`,
// 创业活动
activityList: `occupationlab/occupationlab/activity/activityList`,

@ -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
//

@ -275,7 +275,7 @@ export default {
}
})
e.lcStudentAnswer.map((n, i) => {
e.answer += `${i + 1}.${n.userAnswer};`
e.answer += `${i + 1}.${n.userAnswer || '未填写'};`
})
})
} else { // pythonuserScores

@ -234,7 +234,7 @@
</ul>
<div v-if="item.children" class="toggle"><span @click="item.showChildren = !item.showChildren">{{
item.showChildren ? '收起所有回复' :
`查看所有${item.children.length}条回复`}} <i class="el-icon-arrow-down"></i></span></div>
`查看所有${item.children.length}条回复` }} <i class="el-icon-arrow-down"></i></span></div>
</li>
</ul>
</div>

Loading…
Cancel
Save