From 85486b3a336e0b5c02d2615bcff25ecc09935a30 Mon Sep 17 00:00:00 2001 From: yujialong <479214531@qq.com> Date: Wed, 29 May 2024 16:29:21 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B5=9B=E4=BA=8B=E5=88=86=E9=85=8D=E4=BF=AE?= =?UTF-8?q?=E5=A4=8D=E5=8F=8A=E5=AE=9E=E9=AA=8C=E6=8A=A5=E5=91=8A=E4=B8=94?= =?UTF-8?q?=E6=88=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/index.js | 1 - src/layouts/header/index.vue | 2 +- src/pages/match/details/index.vue | 16 +- src/pages/match/list/index.vue | 934 +++++++++++++++--------------- src/pages/record/show/index.vue | 44 +- src/setting.js | 6 +- 6 files changed, 495 insertions(+), 508 deletions(-) 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 @@