|
|
|
@ -244,6 +244,7 @@ export default { |
|
|
|
|
const second = 1000; |
|
|
|
|
const minute = second * 60; |
|
|
|
|
const hour = minute * 60; |
|
|
|
|
const { token } = this |
|
|
|
|
records.forEach((n, k) => { |
|
|
|
|
// 报名时间、比赛时间处理 |
|
|
|
|
let now = new Date().getTime(); |
|
|
|
@ -257,7 +258,7 @@ export default { |
|
|
|
|
n.status = 0; |
|
|
|
|
total = signUpStartTime - now |
|
|
|
|
} else if (now > signUpStartTime && now < signUpEndTime) { // 报名进行中 |
|
|
|
|
n.status = n.whetherToSignUp ? 2 : 1 // 1已报名,2立即报名 |
|
|
|
|
n.status = !token || n.whetherToSignUp ? 2 : 1 // 1已报名,2立即报名 |
|
|
|
|
total = signUpEndTime - now |
|
|
|
|
} else if (now > signUpEndTime && now < playStartTime) { // 报名结束了,但比赛没开始 |
|
|
|
|
n.status = 3; |
|
|
|
@ -291,10 +292,13 @@ export default { |
|
|
|
|
this.totals = data.total |
|
|
|
|
|
|
|
|
|
// 如果是登录前点报名去登录的,则跳转到该赛事,toMatch存的是点击的赛事id,通过scrollIntoView去跳到赛事的位置 |
|
|
|
|
if (this.toMatch) { |
|
|
|
|
const id = this.toMatch |
|
|
|
|
if (id) { |
|
|
|
|
this.$nextTick(() => { |
|
|
|
|
document.getElementById(this.toMatch).scrollIntoView() |
|
|
|
|
// document.getElementById(id).scrollIntoView() |
|
|
|
|
this.SET_SOURCE('') |
|
|
|
|
const item = records.find(e => e.id === id) |
|
|
|
|
item && this.toDetail(item) |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
this.loadIns.close() |
|
|
|
@ -333,10 +337,6 @@ export default { |
|
|
|
|
}).catch(res => {}) : |
|
|
|
|
this.initData() |
|
|
|
|
}, |
|
|
|
|
changeType(type) { |
|
|
|
|
this.way = type; |
|
|
|
|
this.initData() |
|
|
|
|
}, |
|
|
|
|
// 筛选范围 |
|
|
|
|
changeScope(type) { |
|
|
|
|
this.form.competitionScope = type |
|
|
|
@ -355,9 +355,6 @@ export default { |
|
|
|
|
this.getData(); |
|
|
|
|
}, |
|
|
|
|
signup(item) { |
|
|
|
|
this.SET_SOURCE(item.id) |
|
|
|
|
this.$router.push('/login') |
|
|
|
|
return |
|
|
|
|
// 如果没登录,提示去登录,status=2则是报名中 |
|
|
|
|
if (item.status == 2) { |
|
|
|
|
if (util.local.get(Setting.tokenKey)) { |
|
|
|
@ -532,7 +529,7 @@ export default { |
|
|
|
|
background-color: #52C41A; |
|
|
|
|
} |
|
|
|
|
&.playing { |
|
|
|
|
background-color: #32cf8b; |
|
|
|
|
background-color: #f96d6d; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
&.finish { |
|
|
|
|