From f66b3bf254bfc745327df324cf2b3ba4b1954a1c Mon Sep 17 00:00:00 2001 From: yujialong <479214531@qq.com> Date: Fri, 24 Nov 2023 17:49:29 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B5=9B=E4=BA=8B=E6=8A=A5=E5=90=8D=E7=8A=B6?= =?UTF-8?q?=E6=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/match/details/index.vue | 63 ++++++++++++++++++++----------- src/pages/match/list/index.vue | 21 ++++++++--- 2 files changed, 58 insertions(+), 26 deletions(-) diff --git a/src/pages/match/details/index.vue b/src/pages/match/details/index.vue index d13c777..41047fa 100644 --- a/src/pages/match/details/index.vue +++ b/src/pages/match/details/index.vue @@ -22,24 +22,27 @@ 距离{{ endList[status] }}还有 {{ end }}

- - - 选择竞赛 - - - 进入{{ item.stageName }} - - - {{ statusList[status] }} +
+

{{ form.competitionRegistration ? '已报名' : '未报名' }}

+ + + 选择竞赛 + + + 进入{{ item.stageName }} + + +
{{ statusList[status] }}
+
@@ -644,7 +647,6 @@
-
文件上传: { + this.$post(this.api.joinCompetitionTeam, form).then(res => { + this.status = 1 this.enterVisible = false this.getData() util.successMsg('报名成功!') @@ -1620,6 +1623,7 @@ export default { type: 'success' }).then(() => { this.$post(`${this.api.cancelRegistration}?competitionId=${this.id}`).then(res => { + this.status = 2 this.$message.success('取消报名成功') this.getData() }).catch(res => { }) @@ -1758,10 +1762,27 @@ export default { display: inline-flex; align-items: center; } + .sign-status { + margin-bottom: 10px; + text-align: center; + font-size: 14px; + color: $main-color; + &.signing { + color: $main-color; + } + &.signed { + color: #52c41a; + } + &.playing { + color: #f96d6d; + } + &:last-child { + margin-bottom: 0; + } + } .status { max-width: 120px; padding: 0 16px; - margin-left: 20px; line-height: 34px; font-size: 14px; color: #fff; diff --git a/src/pages/match/list/index.vue b/src/pages/match/list/index.vue index 5460d0f..7a21116 100644 --- a/src/pages/match/list/index.vue +++ b/src/pages/match/list/index.vue @@ -122,8 +122,9 @@
+

{{ item.whetherToSignUp === 0 ? '已报名' : '未报名' }}