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 ? '已报名' : '未报名' }}