diff --git a/src/api/index.js b/src/api/index.js index 6177433..f60a4ab 100644 --- a/src/api/index.js +++ b/src/api/index.js @@ -156,7 +156,6 @@ export default { cCompetitionStageFileDel: `competition/cCompetitionStageFile/batchDeletion`, viewEventAllocationInformation: `competition/competitionAutomaticAllocationRecord/viewEventAllocationInformation`, checkTeamStatus: `competition/teamAbnormalInformation/checkTeamStatus`, - competitionTeamAutomaticAllocationRecordSave: `competition/competitionTeamAutomaticAllocationRecord/save`, teamAssignmentButtonDisplay: `competition/competitionTeamAutomaticAllocationRecord/teamAssignmentButtonDisplay`, assignedPlayer: `competition/competition/automaticAllocation/assignedPlayer`, competitionTeamAutomaticAllocationRecordSave: `competition/competitionTeamAutomaticAllocationRecord/saveOrUpdate`, diff --git a/src/layouts/header/index.vue b/src/layouts/header/index.vue index e6c6e80..075e618 100644 --- a/src/layouts/header/index.vue +++ b/src/layouts/header/index.vue @@ -98,7 +98,7 @@ export default { ]) }, mounted () { - if (this.token) { + if (util.local.get(Setting.tokenKey)) { this.getSystemDetail(); this.getUserInfo(); this.getNotice() diff --git a/src/pages/match/details/index.vue b/src/pages/match/details/index.vue index aa5433e..e225141 100644 --- a/src/pages/match/details/index.vue +++ b/src/pages/match/details/index.vue @@ -260,8 +260,9 @@ 竞赛阶段:
- {{ - assignRecord.assignOrNot && status < 3 ? '取消' : '' }}自动分配阶段成员 + {{ + assignRecord.assignOrNot && status < 3 ? '取消' : '' }}自动分配阶段成员
@@ -654,6 +655,7 @@ export default { stageTips: [], showButton: false, assignRecord: {}, + allocating: false, }; }, computed: { @@ -1145,6 +1147,7 @@ export default { const res = await this.$post(`${this.api.teamAssignmentButtonDisplay}?competitionId=${this.id}&teamId=${this.info.teamId}`) this.showButton = res.showButton // 自动分配按钮是否展示 this.assignRecord = res.teamRecord || {} // 展示成自动分配 or 取消分配 + this.allocating = false }, // 移除参赛人员 async removePar (e, stage) { @@ -1319,7 +1322,7 @@ export default { }, // 队长创建团队后弹框 afterCreateTeam () { - // 已分配 + // 赛事自动分配状态为开启,则直接提示;否则弹框询问是否要启用团队自动分配 if (this.allocated) { Util.successMsg('团队创建成功,系统将自动帮您分配阶段参赛成员,您也可以到参数信息进行指定') } else { @@ -1331,9 +1334,7 @@ export default { closeOnClickModal: false, }).then(() => { this.automaticAllocation(1) - }).catch(() => { - this.automaticAllocation(0) - }) + }).catch(() => { }) } }, // 团队创建成功后分配 @@ -1353,6 +1354,7 @@ export default { type: 'success', closeOnClickModal: false, }).then(async () => { + this.allocating = true // 报名结束之前则调修改接口,否则调自动分配接口 if (this.status < 3) { await this.$post(this.api.competitionTeamAutomaticAllocationRecordSave, { @@ -1571,7 +1573,7 @@ export default { type: 'success', closeOnClickModal: false }).then(() => { - this.$post(`${this.api.cancelRegistration}?competitionId = ${this.id} `).then(res => { + this.$post(`${this.api.cancelRegistration}?competitionId=${this.id}`).then(res => { this.status = 2 this.$message.success('取消报名成功') this.getData() diff --git a/src/pages/match/list/index.vue b/src/pages/match/list/index.vue index 03c0636..1c2f762 100644 --- a/src/pages/match/list/index.vue +++ b/src/pages/match/list/index.vue @@ -3,22 +3,16 @@
-
@@ -83,37 +60,39 @@