yujialong 2 years ago
parent 9e3d4f40db
commit cb6ecde713
  1. 1
      src/api/index.js
  2. 2
      src/layouts/home/index.vue
  3. 14
      src/pages/account/login/index.vue
  4. 267
      src/pages/match/details/index.vue
  5. 231
      src/pages/match/list/index.vue
  6. 224
      src/pages/touristMatch/list/index.vue
  7. 2
      src/setting.js

@ -102,6 +102,7 @@ export default {
isParticipant: `competition/competition/management/isParticipant`,
editCompetitionTeam: `competition/competition/team/editCompetitionTeam`,
promptRemoval: `competition/competition/team/promptRemoval`,
checkPhoneOrEmailExist: `users/users/userInfo/checkPhoneOrEmailExist`,
frontDeskOverallRanking: `${host1}competition/competition/rank/frontDeskOverallRanking`,
frontOfficeCompetitionRanking: `${host1}competition/competition/rank/frontOfficeCompetitionRanking`,
stageGradeManagementList: `${host1}competition/competition/performance/stageGradeManagementList`,

@ -84,7 +84,7 @@ export default {
},
mounted() {
this.autoLogout()
// this.noticed || this.getMatchStatus() // 0
this.noticed || this.getMatchStatus() // 0
this.logView || this.getLogStatus() // logViewfalse
},
methods: {

@ -71,7 +71,7 @@
</el-form-item>
</template>
<div class="bottom">
<el-link :underline="false" type="primary" @click="toAccount">暂无账号点击申请</el-link>
<el-link v-if="toMatch" :underline="false" type="primary" @click="toAccount">暂无账号点击申请</el-link>
<el-checkbox v-show="!form.distinguish" v-model="setDefault">设置为默认学校</el-checkbox>
</div>
<el-button class="submit" type="primary" @click="submit">登录</el-button>
@ -539,10 +539,14 @@ export default {
//
sendCode() {
const { phone } = this.accountForm
if (!this.verifyPhone(phone)) return false
this.$post(`${this.api.sendPhoneVerificationCode}?phoneOrEmail=${phone}&loginOrBind=1&platform=${Setting.platformId}`).then(({ message }) => {
util.successMsg(message)
this.phoneCountdown()
//
phone && this.$get(`${this.api.checkPhoneOrEmailExist}?phone=${phone}&type=1&email=`).then(res => {
if (res) return util.errorMsg('手机号重复,请重新输入!')
if (!this.verifyPhone(phone)) return false
this.$post(`${this.api.sendPhoneVerificationCode}?phoneOrEmail=${phone}&loginOrBind=1&platform=${Setting.platformId}`).then(({ message }) => {
util.successMsg(message)
this.phoneCountdown()
}).catch(res => {})
}).catch(res => {})
},
//

@ -5,17 +5,16 @@
<div class="center-wrap">
<breadcrumb ref="breadcrumb" :data="'全部赛事/' + form.name"></breadcrumb>
<div class="content">
<div class="tool flex-between">{{status}}
<div class="tool flex-between">
<el-tabs v-model="curType" @tab-click="typeChange">
<el-tab-pane v-for="(item, index) in typeList" :key="index" :label="item.name" :name="item.id"></el-tab-pane>
</el-tabs>
<div class="action">
<p class="end-text" v-if="status != 5">
<p class="end-text" v-if="end">
距离{{ endList[status] }}还有
<template v-if="end > 0"><em>{{ end }}</em> </template>
<em v-else-if="end" v-countdown>{{ end }}</em>
<em>{{ end }}</em>
</p>
<a v-if="status != 4 || (status == 4 && curStage)" class="status" :class="{wait: status == 0 || status == 4,signing: status == 2,signed: status == 1,finish: status == 3 || status == 5}" @click.stop="signup">{{ statusList[status] }}</a>
<a v-if="status != 4 || (status == 4 && curStage)" class="status" :class="{wait: status == 0,signing: status == 2,signed: status == 1,playing: status == 4,finish: status == 3 || status == 5}" @click.stop="signup">{{ statusList[status] }}</a>
</div>
</div>
<div class="info">
@ -50,7 +49,7 @@
<template v-if="rule.method === 2">
<p>线下地点{{ rule.offlineAddress }}</p>
<p>比赛内容{{ rule.contentDescription }}</p>
<p class="m-t-10">评分规则{{ rule.scoreRule }}</p>
<p>评分规则{{ rule.scoreRule }}</p>
</template>
<template v-if="form.completeCompetitionSetup.competitionType">
@ -272,7 +271,7 @@
<div class="l-title m-t-20">团队成员</div>
<div class="flex-center">
<p>队长{{ info.caption.userName }}</p>
<el-button type="primary" :disabled="status > 3" @click="transfer">转让队长</el-button>
<el-button type="primary" @click="transfer">转让队长</el-button>
</div>
<el-table :data="info.teamDetail" stripe header-align="center">
<el-table-column prop="userName" label="成员姓名" min-width="100" align="center"></el-table-column>
@ -281,7 +280,7 @@
<el-table-column prop="createTime" label="加入时间" width="180" align="center"></el-table-column>
<el-table-column label="操作" align="center" width="160">
<template slot-scope="scope">
<el-button v-if="scope.row.captain" type="text" :disabled="status > 3" @click="removeLine(scope.row)">踢出团队</el-button>
<el-button v-if="scope.row.captain" type="text" @click="removeLine(scope.row)">踢出团队</el-button>
</template>
</el-table-column>
</el-table>
@ -342,9 +341,6 @@
</span>
</el-dialog>
<el-dialog title="选择参赛成员" :visible.sync="chooseVisible" :close-on-click-modal="false" width="400px">
<!-- <template v-if="curRow.teamNumLimit === 1">
<el-radio v-for="(item, i) in info.teamDetail" :key="i" v-model="checkedMember" :label="item.accountId">{{ item.userName }}</el-radio>
</template> -->
<el-checkbox-group v-model="checkedMembers">
<el-checkbox v-for="(item, i) in chooses" :key="i" :label="item.accountId">{{ item.userName }}</el-checkbox>
</el-checkbox-group>
@ -500,80 +496,11 @@ export default {
components: {
breadcrumb
},
directives: {
countdown: {
bind: function(el, binding, vnode) {
let that = vnode.context
clearInterval(that.timer)
const { form } = that
let time = ''
let signUpStartTime = new Date(that.core.dateCompatible(form.signUpStartTime)).getTime(); //
let signUpEndTime = new Date(that.core.dateCompatible(form.signUpEndTime)).getTime(); //
let playStartTime = new Date(that.core.dateCompatible(form.playStartTime)).getTime(); //
let playEndTime = new Date(that.core.dateCompatible(form.playEndTime)).getTime(); //
that.timer = setInterval(() => {
let now = new Date().getTime();
switch (that.status) {
// statusgetData
case 0:
if (now > signUpStartTime) {
that.status = 1;
} else {
time = signUpStartTime - now;
}
break;
case 1:
if (now > signUpEndTime) {
that.status = 3;
} else {
time = signUpEndTime - now;
}
break;
case 2:
if (now > signUpEndTime) {
that.status = 3;
} else {
time = signUpEndTime - now;
}
break;
case 3:
if (now > playStartTime) {
that.status = 4;
} else {
time = playStartTime - now;
}
break;
case 4:
if (now > playEndTime) {
that.status = 5;
} else {
time = playEndTime - now;
}
break;
}
let total = time / 1000
if (total > 86400) { //
clearInterval(that.timer)
that.end = Math.floor(total / 86400)
} else if (total > 0) {
--total;
let hours = Math.floor(total / (60 * 60));
let minutes = Math.floor(total % (60 * 60) / 60);
let seconds = Math.floor(total % (60 * 60) % 60);
time = `${that.core.formateTime(hours)}:${that.core.formateTime(minutes)}:${that.core.formateTime(seconds)}`;
} else if (that.status === 5) { //
clearInterval(that.timer);
}
if (total > 0) el.innerHTML = time
}, 1000)
}
}
},
mounted() {
this.$once('hook:beforeDestroy', function() {
clearInterval(this.timer)
this.timerList.forEach(n => {
clearInterval(n)
clearTimeout(n)
})
this.timerList = []
})
@ -588,7 +515,6 @@ export default {
]),
getData() { //
this.$post(`${this.api.getCompetition}?competitionId=${this.id}`).then(({ competition }) => {
this.handleStatus(competition)
const list = competition.competitionAnnexList
//
if (list) {
@ -615,55 +541,87 @@ export default {
name: '参赛信息'
})
this.getInfo()
reg.teamId && this.getRank()
}
this.getRank()
this.$refs.breadcrumb.update('全部赛事/' + competition.name)
this.handleStatus()
}).catch(err => {})
},
//
handleStatus(form) {
const second = 1000;
const minute = second * 60;
const hour = minute * 60;
let status
const n = form
let now = new Date().getTime();
let signUpStartTime = new Date(this.core.dateCompatible(n.signUpStartTime)).getTime(); //
let signUpEndTime = new Date(this.core.dateCompatible(n.signUpEndTime)).getTime(); //
let playStartTime = new Date(this.core.dateCompatible(n.playStartTime)).getTime(); //
let playEndTime = new Date(this.core.dateCompatible(n.playEndTime)).getTime(); //
let total = 0
if (now < signUpStartTime) { //
status = 0;
total = signUpStartTime - now
} else if (now > signUpStartTime && now < signUpEndTime) { //
status = n.competitionRegistration ? 1 : 2 // 12
total = signUpEndTime - now
} else if (now > signUpEndTime && now < playStartTime) { // ,
status = 3;
total = playStartTime - now
} else if (now > playStartTime && now < playEndTime) { //
//
if (n.competitionStage && n.competitionRegistration) {
for (const e of n.competitionStage) {
if (now > new Date(e.startTime) && now < new Date(e.endTime) && !e.count && e.method !== 2) {
this.curStage = e
this.statusList[4] = '进入' + e.stageName
break
//
handleStatus() {
const { form } = this
let total = ''
let time = ''
let status = ''
let signUpStartTime = new Date(this.core.dateCompatible(form.signUpStartTime)) //
let signUpEndTime = new Date(this.core.dateCompatible(form.signUpEndTime)) //
let playStartTime = new Date(this.core.dateCompatible(form.playStartTime)) //
let playEndTime = new Date(this.core.dateCompatible(form.playEndTime)) //
this.timer = setInterval(() => {
const now = new Date()
if (now < signUpStartTime) { //
status = 0
total = signUpStartTime - now
} else if (now > signUpStartTime && now < signUpEndTime) { //
status = form.competitionRegistration ? 1 : 2 // 12
total = signUpEndTime - now
} else if (now > signUpEndTime && now < playStartTime) { // ,
status = 3
total = playStartTime - now
} else if (now > playStartTime && now < playEndTime) { //
//
let curStage = null
const stages = form.competitionStage
if (stages) {
let endText = ''
for (const i in stages) {
const e = stages[i]
const startTime = new Date(e.startTime)
const endTime = new Date(e.endTime)
if (now < startTime) { //
endText = '阶段开始'
total = startTime - now
break
} else if (now >= startTime && now <= endTime && !e.count && e.method !== 2) { //
if (form.competitionRegistration) this.statusList[4] = '进入' + e.stageName
endText = '阶段结束'
curStage = e
total = endTime - now
break
} else if (stages[i + 1] && now > endTime && now < new Date(stages[i + 1].startTime)) { //
endText = '阶段开始'
total = new Date(stages[i + 1].startTime) - now
break
} else if (i === stages.length - 1) { //
this.$set(form, 'stageName', '')
endText = '竞赛结束'
total = playEndTime - now
break
}
}
this.endList[4] = endText
}
this.curStage = curStage
status = 4
} else if (now > playEndTime) { //
status = 5
}
}
status = 4
total = playEndTime - now
} else if (now > playEndTime) { //
status = 5;
}
this.status = status
if (total > 0) {
const day = Math.floor(total / (60 * 60 * 1000 * 24))
const time = `${this.core.formateTime(Math.floor(total / hour))}:${this.core.formateTime(Math.floor(total % hour / minute))}:${this.core.formateTime(Math.floor(total % hour % minute / second))}`
this.end = day || time
}
this.status = status
total = total / 1000
--total
if (total > 86400) { //
clearInterval(this.timer)
this.end = Math.floor(total / 86400) + '天'
} else if (total > 0) { //
let hours = Math.floor(total / (60 * 60))
let minutes = Math.floor(total % (60 * 60) / 60)
let seconds = Math.floor(total % (60 * 60) % 60)
time = `${this.core.formateTime(hours)}:${this.core.formateTime(minutes)}:${this.core.formateTime(seconds)}`
if (total > 0) this.end = time
} else if (form.status === 5) { //
clearInterval(this.timer)
}
}, 1000)
},
//
getInfo() {
@ -681,7 +639,6 @@ export default {
info.caption = caption ? caption : {}
info.person = info.personalDetail || info.teamDetail.find(e => e.accountId == info.team.accountId)
this.originInfo = JSON.parse(JSON.stringify(info))
//
const now = Date.now()
this.form.competitionStage.map(e => {
@ -689,7 +646,7 @@ export default {
if (!e.resultsDetails) {
const endTime = new Date(e.endTime).getTime() + e.resultAnnouncementTime * 3600000 // +
if (now > endTime) { //
info.stages.find(n => n.stageId === e.stageId).showDetail = 1
info.stages.find(n => n.stageId == e.stageId).showDetail = 1
} else { //
this.timerList.push(setTimeout(this.getInfo, endTime - now))
}
@ -800,19 +757,10 @@ export default {
competitionId: this.id,
isOverallRanking: cur ? 0 : 1
}
// if (cur) { //
// data.stageIds = cur ? cur: this.form.competitionStage.map(e => +e.stageId).join()
data.stageIds = cur ? cur: ''
this.$post(this.api.frontOfficeCompetitionRanking, data).then(({ list }) => {
this.ranks = list
}).catch(res => {})
// } else { //
// data.stageIds = this.form.competitionStage.map(e => +e.stageId).join()
// data.isOverallRanking = 1
// this.$post(this.api.frontDeskOverallRanking, data).then(({ page }) => {
// this.ranks = page
// }).catch(res => {})
// }
data.stageIds = cur ? cur: ''
this.$post(this.api.frontOfficeCompetitionRanking, data).then(({ list }) => {
this.ranks = list
}).catch(res => {})
},
//
@ -858,7 +806,17 @@ export default {
},
//
transfer() {
this.transferVisible = true
//
const now = new Date()
let start = 0
for (const e of this.form.competitionStage) {
if (now >= new Date(e.startTime) && now <= new Date(e.endTime)) {
util.errorMsg('比赛已经开始,无法转让队长!')
start = 1
break
}
}
if (!start) this.transferVisible = true
},
//
transferSubmit() {
@ -875,10 +833,26 @@ export default {
},
//
removeLine(row) {
this.$post(`${this.api.removeTheLine}?teamId=${this.info.teamId}&competitionId=${this.id}&accountId=${row.accountId}`).then(res => {
util.successMsg('移除成功')
this.getInfo()
}).catch(res => {})
//
const now = new Date()
let start = 0
for (const e of this.form.competitionStage) {
if (now >= new Date(e.startTime) && now <= new Date(e.endTime)) {
util.errorMsg('比赛已经开始,无法踢出成员!')
start = 1
break
}
}
if (!start) {
this.$confirm('确定要踢出该成员吗?', '提示', {
type: 'warning'
}).then(() => {
this.$post(`${this.api.removeTheLine}?teamId=${this.info.teamId}&competitionId=${this.id}&accountId=${row.accountId}`).then(res => {
util.successMsg('移除成功')
this.getInfo()
}).catch(res => {})
}).catch(() => {})
}
},
//
selectPar(row) {
@ -1220,6 +1194,9 @@ export default {
&.signed {
background-color: #52C41A;
}
&.playing {
background-color: #f96d6d;
}
&.finish {
background-color: #ccc;
}

@ -65,6 +65,7 @@
<ul>
<li v-for="(item,index) in listData" :key="index" @click="toDetail(item)">
<div class="left">
<el-button v-if="item.status === 2 || item.curStage" :class="['stage-label', {playing: item.curStage}]" type="primary">{{ item.status === 2 ? '报名中' : item.curStage ? '竞赛中' : '' }}</el-button>
<div class="cover">
<img :src="item.coverUrl || 'https://huoran.oss-cn-shenzhen.aliyuncs.com/20220623/png/1539857403162943488.png'" alt="">
</div>
@ -103,10 +104,9 @@
v-if="item.status != 4 || (item.status == 4 && item.curStage)"
:class="{wait: item.status == 0,signing: item.status == 2,signed: item.status == 1,playing: item.status == 4 && item.curStage,finish: item.status == 3 || item.status == 5}"
@click.stop="signup(item)">{{ item.status == 4 ? item.stageName : statusList[item.status] }}</p>
<p class="end-text" v-if="item.status != 5">
距离{{ endList[item.status] }}还有
<template v-if="item.end > 0"><em>{{ item.end }}</em> </template>
<em v-else v-countdown="index">{{ item.end }}</em>
<p class="end-text" v-if="item.end">
距离{{ item.status == 4 ? item.endText : endList[item.status] }}还有
<em >{{ item.end }}</em>
</p>
</div>
</li>
@ -187,7 +187,7 @@ export default {
return {
timer: null,
token: util.local.get(Setting.tokenKey),
statusList: ["待报名", "取消报名", "立即报名", "报名截止", "进入初赛", "已结束"],
statusList: ["待报名", "取消报名", "马上报名", "报名截止", "进入初赛", "已结束"],
endList: ["报名开始", "报名截止", "报名截止", "竞赛开始", "竞赛结束", ""],
typeList: [
{
@ -291,75 +291,6 @@ export default {
}
};
},
directives: {
countdown: {
bind: function(el, binding, vnode) {
let that = vnode.context;
let item = that.listData[binding.value];
let time = ''
let signUpStartTime = new Date(that.core.dateCompatible(item.signUpStartTime)).getTime(); //
let signUpEndTime = new Date(that.core.dateCompatible(item.signUpEndTime)).getTime(); //
let playStartTime = new Date(that.core.dateCompatible(item.playStartTime)).getTime(); //
let playEndTime = new Date(that.core.dateCompatible(item.playEndTime)).getTime(); //
let timer = setInterval(() => {
let now = new Date().getTime();
switch (item.status) {
// statusgetData
case 0:
if (now > signUpStartTime) {
item.status = item.whetherToSignUp ? 2 : 1 // 12
} else {
time = signUpStartTime - now;
}
break;
case 1:
if (now > signUpEndTime) {
item.status = 3;
} else {
time = signUpEndTime - now;
}
break;
case 2:
if (now > signUpEndTime) {
item.status = 3;
} else {
time = signUpEndTime - now;
}
break;
case 3:
if (now > playStartTime) {
item.status = 4;
} else {
time = playStartTime - now;
}
break;
case 4:
if (now > playEndTime) {
item.status = 5;
} else {
time = playEndTime - now;
}
break;
}
let total = time / 1000
if (total > 86400) { //
clearInterval(timer)
item.end = Math.floor(total / 86400)
} else if (total > 0) {
--total;
let hours = Math.floor(total / (60 * 60));
let minutes = Math.floor(total % (60 * 60) / 60);
let seconds = Math.floor(total % (60 * 60) % 60);
time = `${that.core.formateTime(hours)}:${that.core.formateTime(minutes)}:${that.core.formateTime(seconds)}`;
} else if (that.status === 5) {
clearInterval(timer);
}
if (total > 0) el.innerHTML = time;
}, 1000);
that.timerList.push(timer);
}
}
},
computed: {
...mapState('match', [
'eventType'
@ -378,12 +309,7 @@ export default {
this.SET_TYPE(2)
this.getProvince()
this.getData()
this.$once('hook:beforeDestroy', function() {
this.timerList.forEach(n => {
clearInterval(n)
})
this.timerList = []
})
this.$once('hook:beforeDestroy', this.clearTimer)
},
methods: {
...mapMutations('match', [
@ -406,53 +332,8 @@ export default {
if (eventType !== 1) data.competitionScope = form.competitionScope //
this.$post(this.api.competitionAfterLogin, data).then(({ data }) => {
const { records } = data
const second = 1000;
const minute = second * 60;
const hour = minute * 60;
records.forEach((n, k) => {
n.invitationCode = n.setup.invitationCode
//
let now = new Date().getTime();
let signUpStartTime = new Date(this.core.dateCompatible(n.signUpStartTime)).getTime(); //
let signUpEndTime = new Date(this.core.dateCompatible(n.signUpEndTime)).getTime(); //
let playStartTime = new Date(this.core.dateCompatible(n.playStartTime)).getTime(); //
let playEndTime = new Date(this.core.dateCompatible(n.playEndTime)).getTime(); //
let total = 0
// whetherToSignUp 01
if (now < signUpStartTime) { //
n.status = 0;
total = signUpStartTime - now
} else if (now > signUpStartTime && now < signUpEndTime) { //
n.status = n.whetherToSignUp ? 2 : 1 // 12
total = signUpEndTime - now
} else if (now > signUpEndTime && now < playStartTime) { // ,
n.status = 3;
total = playStartTime - now
} else if (now > playStartTime && now < playEndTime) { //
//
let curStage = null
if (n.competitionStageList && n.whetherToSignUp === 0) {
for (const e of n.competitionStageList) {
if (now > new Date(e.startTime) && now < new Date(e.endTime) && !e.count && e.method !== 2) {
n.stageName = '进入' + e.stageName
curStage = e
break
}
}
}
n.curStage = curStage
n.status = 4
total = playEndTime - now
} else if (now > playEndTime) { //
n.status = 5;
}
if (total > 0) {
const day = Math.floor(total / (60 * 60 * 1000 * 24))
const time = `${this.core.formateTime(Math.floor(total / hour))}:${this.core.formateTime(Math.floor(total % hour / minute))}:${this.core.formateTime(Math.floor(total % hour % minute / second))}`
n.end = day || time
}
//
const list = n.competitionRangeRespList
if (list) {
@ -465,14 +346,101 @@ export default {
n.ranges = n.range
}
});
this.listData = records
this.totals = data.total
this.handleStatus()
this.loadIns.close();
}).catch(res => {
this.loadIns.close()
})
},
//
handleStatus() {
this.listData.map(item => {
let total = ''
let time = ''
let status = ''
let signUpStartTime = new Date(this.core.dateCompatible(item.signUpStartTime)) //
let signUpEndTime = new Date(this.core.dateCompatible(item.signUpEndTime)) //
let playStartTime = new Date(this.core.dateCompatible(item.playStartTime)) //
let playEndTime = new Date(this.core.dateCompatible(item.playEndTime)) //
let timer = setInterval(() => {
const now = new Date()
if (now < signUpStartTime) { //
status = 0
total = signUpStartTime - now
} else if (now > signUpStartTime && now < signUpEndTime) { //
// whetherToSignUp 01
status = item.whetherToSignUp ? 2 : 1 // 12
total = signUpEndTime - now
} else if (now > signUpEndTime && now < playStartTime) { // ,
status = 3
total = playStartTime - now
} else if (now > playStartTime && now < playEndTime) { //
//
let curStage = null
const stages = item.competitionStageList
if (stages) {
for (const i in stages) {
const e = stages[i]
const startTime = new Date(e.startTime)
const endTime = new Date(e.endTime)
if (now < startTime) { //
this.$set(item, 'stageName', '')
this.$set(item, 'endText', '阶段开始')
total = startTime - now
break
} else if (now >= startTime && now <= endTime && !e.count && e.method !== 2) { //
item.whetherToSignUp === 0 && this.$set(item, 'stageName', '进入' + e.stageName)
this.$set(item, 'endText', '阶段结束')
curStage = e
total = endTime - now
break
} else if (stages[i + 1] && now > endTime && now < new Date(stages[i + 1].startTime)) { //
this.$set(item, 'stageName', '')
this.$set(item, 'endText', '阶段开始')
total = new Date(stages[i + 1].startTime) - now
break
} else if (i === stages.length - 1) { //
this.$set(item, 'stageName', '')
this.$set(item, 'endText', '竞赛结束')
total = playEndTime - now
break
}
}
}
item.curStage = curStage
status = 4
} else if (now > playEndTime) { //
status = 5
}
this.$set(item, 'status', status)
total = total / 1000
--total
if (total > 86400) { //
clearInterval(timer)
this.$set(item, 'end', Math.floor(total / 86400) + '天')
} else if (total > 0) { //
let hours = Math.floor(total / (60 * 60))
let minutes = Math.floor(total % (60 * 60) / 60)
let seconds = Math.floor(total % (60 * 60) % 60)
time = `${this.core.formateTime(hours)}:${this.core.formateTime(minutes)}:${this.core.formateTime(seconds)}`
if (total > 0) this.$set(item, 'end', time)
} else if (item.status === 5) { //
clearInterval(timer)
}
}, 1000)
this.timerList.push(timer)
})
},
//
clearTimer() {
this.timerList.forEach(n => {
clearInterval(n)
})
this.timerList = []
},
getData() {
this.loadIns = Loading.service()
this.getList()
@ -524,6 +492,7 @@ export default {
this.$router.push(`/match/details?id=${item.id}`);
},
handleCurrentChange(val) {
this.clearTimer()
this.page = val;
this.getData();
},
@ -910,7 +879,17 @@ export default {
}
}
.left {
position: relative;
display: inline-flex;
.stage-label {
position: absolute;
top: -16px;
left: -16px;
border: 0;
&.playing {
background-color: #f96d6d;
}
}
.cover {
img {
width: 298px;

@ -86,10 +86,9 @@
v-if="item.status != 4 || (item.status == 4 && item.curStage)"
:class="{wait: item.status == 0,signing: item.status == 2,signed: item.status == 1,playing: item.status == 4 && item.curStage,finish: item.status == 3 || item.status == 5}"
@click.stop="signup(item)">{{ item.status == 4 ? item.stageName : statusList[item.status] }}</p>
<p class="end-text" v-if="item.status != 5">
距离{{ endList[item.status] }}还有
<template v-if="item.end > 0"><em>{{ item.end }}</em> </template>
<em v-else v-countdown="index">{{ item.end }}</em>
<p class="end-text" v-if="item.end">
距离{{ item.status == 4 ? item.endText : endList[item.status] }}还有
<em >{{ item.end }}</em>
</p>
</div>
</li>
@ -172,7 +171,7 @@ export default {
timer: null,
token: util.local.get(Setting.tokenKey),
way: 2,
statusList: ["待报名", "取消报名", "立即报名", "报名截止", "进入初赛", "已结束"],
statusList: ["待报名", "取消报名", "马上报名", "报名截止", "进入初赛", "已结束"],
endList: ["报名开始", "报名截止", "报名截止", "竞赛开始", "竞赛结束", ""],
typeList: [
{
@ -256,75 +255,6 @@ export default {
}
};
},
directives: {
countdown: {
bind: function(el, binding, vnode) {
let that = vnode.context;
let item = that.listData[binding.value];
let time = ''
let signUpStartTime = new Date(that.core.dateCompatible(item.signUpStartTime)).getTime(); //
let signUpEndTime = new Date(that.core.dateCompatible(item.signUpEndTime)).getTime(); //
let playStartTime = new Date(that.core.dateCompatible(item.playStartTime)).getTime(); //
let playEndTime = new Date(that.core.dateCompatible(item.playEndTime)).getTime(); //
let timer = setInterval(() => {
let now = new Date().getTime();
switch (item.status) {
// statusgetData
case 0:
if (now > signUpStartTime) {
item.status = item.whetherToSignUp ? 2 : 1 // 12
} else {
time = signUpStartTime - now;
}
break;
case 1:
if (now > signUpEndTime) {
item.status = 3;
} else {
time = signUpEndTime - now;
}
break;
case 2:
if (now > signUpEndTime) {
item.status = 3;
} else {
time = signUpEndTime - now;
}
break;
case 3:
if (now > playStartTime) {
item.status = 4;
} else {
time = playStartTime - now;
}
break;
case 4:
if (now > playEndTime) {
item.status = 5;
} else {
time = playEndTime - now;
}
break;
}
let total = time / 1000
if (total > 86400) { //
clearInterval(timer)
item.end = Math.floor(total / 86400)
} else if (total > 0) {
--total;
let hours = Math.floor(total / (60 * 60));
let minutes = Math.floor(total % (60 * 60) / 60);
let seconds = Math.floor(total % (60 * 60) % 60);
time = `${that.core.formateTime(hours)}:${that.core.formateTime(minutes)}:${that.core.formateTime(seconds)}`;
} else if (that.status === 5) {
clearInterval(timer);
}
if (total > 0) el.innerHTML = time;
}, 1000);
that.timerList.push(timer);
}
}
},
computed: {
...mapState('match', [
'toMatch'
@ -341,12 +271,7 @@ export default {
mounted() {
this.getProvince()
this.getData()
this.$once('hook:beforeDestroy', function() {
this.timerList.forEach(n => {
clearInterval(n)
})
this.timerList = []
})
this.$once('hook:beforeDestroy', this.clearTimer)
},
methods: {
...mapMutations('match', [
@ -367,54 +292,9 @@ export default {
}
this.$post(this.api.notLoggedInBeforeStudentEvents, data).then(({ data }) => {
const { records } = data
const second = 1000;
const minute = second * 60;
const hour = minute * 60;
const { token } = this
records.forEach((n, k) => {
n.invitationCode = n.setup.invitationCode
//
let now = new Date().getTime();
let signUpStartTime = new Date(this.core.dateCompatible(n.signUpStartTime)).getTime(); //
let signUpEndTime = new Date(this.core.dateCompatible(n.signUpEndTime)).getTime(); //
let playStartTime = new Date(this.core.dateCompatible(n.playStartTime)).getTime(); //
let playEndTime = new Date(this.core.dateCompatible(n.playEndTime)).getTime(); //
let total = 0
// whetherToSignUp 01
if (now < signUpStartTime) { //
n.status = 0;
total = signUpStartTime - now
} else if (now > signUpStartTime && now < signUpEndTime) { //
n.status = n.whetherToSignUp ? 2 : 1 // 12
total = signUpEndTime - now
} else if (now > signUpEndTime && now < playStartTime) { // ,
n.status = 3;
total = playStartTime - now
} else if (now > playStartTime && now < playEndTime) { //
//
let curStage = null
if (n.competitionStageList && n.whetherToSignUp === 0) {
for (const e of n.competitionStageList) {
if (now > new Date(e.startTime) && now < new Date(e.endTime) && !e.count && e.method !== 2) {
n.stageName = '进入' + e.stageName
curStage = e
break
}
}
}
n.curStage = curStage
n.status = 4
total = playEndTime - now
} else if (now > playEndTime) { //
n.status = 5;
}
if (total > 0) {
const day = Math.floor(total / (60 * 60 * 1000 * 24))
const time = `${this.core.formateTime(Math.floor(total / hour))}:${this.core.formateTime(Math.floor(total % hour / minute))}:${this.core.formateTime(Math.floor(total % hour % minute / second))}`
n.end = day ? day + '天' : time
}
//
const list = n.competitionRangeRespList
if (list) {
@ -429,6 +309,7 @@ export default {
})
this.listData = records
this.totals = data.total
this.handleStatus()
// toMatchidscrollIntoView
const id = this.toMatch
@ -445,13 +326,97 @@ export default {
this.loadIns.close()
})
},
//
handleStatus() {
this.listData.map(item => {
let total = ''
let time = ''
let status = ''
let signUpStartTime = new Date(this.core.dateCompatible(item.signUpStartTime)) //
let signUpEndTime = new Date(this.core.dateCompatible(item.signUpEndTime)) //
let playStartTime = new Date(this.core.dateCompatible(item.playStartTime)) //
let playEndTime = new Date(this.core.dateCompatible(item.playEndTime)) //
let timer = setInterval(() => {
const now = new Date()
if (now < signUpStartTime) { //
status = 0
total = signUpStartTime - now
} else if (now > signUpStartTime && now < signUpEndTime) { //
// whetherToSignUp 01
status = 2 // 12
total = signUpEndTime - now
} else if (now > signUpEndTime && now < playStartTime) { // ,
status = 3
total = playStartTime - now
} else if (now > playStartTime && now < playEndTime) { //
//
let curStage = null
const stages = item.competitionStageList
if (stages) {
for (const i in stages) {
const e = stages[i]
const startTime = new Date(e.startTime)
const endTime = new Date(e.endTime)
if (now < startTime) { //
this.$set(item, 'stageName', '')
this.$set(item, 'endText', '阶段开始')
total = startTime - now
break
} else if (now >= startTime && now <= endTime && !e.count && e.method !== 2) { //
item.whetherToSignUp === 0 && this.$set(item, 'stageName', '进入' + e.stageName)
this.$set(item, 'endText', '阶段结束')
curStage = e
total = endTime - now
break
} else if (stages[i + 1] && now > endTime && now < new Date(stages[i + 1].startTime)) { //
this.$set(item, 'stageName', '')
this.$set(item, 'endText', '阶段开始')
total = new Date(stages[i + 1].startTime) - now
break
} else if (i === stages.length - 1) { //
this.$set(item, 'stageName', '')
this.$set(item, 'endText', '竞赛结束')
total = playEndTime - now
break
}
}
}
item.curStage = curStage
status = 4
} else if (now > playEndTime) { //
status = 5
}
this.$set(item, 'status', status)
total = total / 1000
--total
if (total > 86400) { //
clearInterval(timer)
this.$set(item, 'end', Math.floor(total / 86400) + '天')
} else if (total > 0) { //
let hours = Math.floor(total / (60 * 60))
let minutes = Math.floor(total % (60 * 60) / 60)
let seconds = Math.floor(total % (60 * 60) % 60)
time = `${this.core.formateTime(hours)}:${this.core.formateTime(minutes)}:${this.core.formateTime(seconds)}`
if (total > 0) this.$set(item, 'end', time)
} else if (item.status === 5) { //
clearInterval(timer)
}
console.log(33, this.listData)
}, 1000)
this.timerList.push(timer)
})
},
//
clearTimer() {
this.timerList.forEach(n => {
clearInterval(n)
})
this.timerList = []
},
getData() {
this.loadIns = Loading.service()
this.getList()
// if (!Setting.isDev) {
// clearInterval(this.timer)
// this.timer = setInterval(this.getList, 1000)
// }
},
initData() {
this.page = 1
@ -490,6 +455,7 @@ export default {
this.$router.push(`/touristMatch/details?id=${item.id}&status=${item.status}${item.end ? '&end=' + item.end : ''}`);
},
handleCurrentChange(val) {
this.clearTimer()
this.page = val;
this.getData();
},

@ -29,7 +29,7 @@ if (isPro) {
host = "http://121.37.12.51/"; // 测试服
// host = 'https://www.occupationlab.com/' // 正式服
host = "http://192.168.31.51:9000/"; // 榕
// host = "http://192.168.31.116:9000/"; // 赓
host = "http://192.168.31.116:9000/"; // 赓
}
const Setting = {

Loading…
Cancel
Save