赛事修复

alioss
yujialong 2 years ago
parent d7c28d8063
commit 52bf266a67
  1. 10
      src/api/index.js
  2. 48
      src/const/match.js
  3. 32
      src/pages/account/login/index.vue
  4. 548
      src/pages/match/details/index.vue
  5. 147
      src/pages/match/list/index.vue
  6. 129
      src/pages/touristMatch/list/index.vue

@ -2,7 +2,7 @@ import Setting from "@/setting";
const host = Setting.apiBaseURL
const uploadURL = Setting.uploadURL
const host1 = 'http://121.37.12.51/'
const host1 = 'http://192.168.31.51:9000/'
export default {
logins: `users/users/user/login`,
@ -94,6 +94,14 @@ export default {
removeTheLine: `competition/competition/team/removeTheLine`,
studentAccountApplication: `users/users/register/studentAccountApplication`,
searchTeam: `competition/competition/team/searchTeam`,
addAnAdvisor: `competition/competition/teamInstructor/addAnAdvisor`,
deleteAnAdvisor: `competition/competition/teamInstructor/deleteAnAdvisor`,
allowedParticipateCompetition: `competition/competition/management/allowedParticipateCompetition`,
stageSelectParticipants: `competition/competition/teamParticipant/stageSelectParticipants`,
getCustomerBySchoolId: `nakadai/nakadai/customer/getCustomerBySchoolId`,
frontDeskOverallRanking: `${host1}competition/competition/rank/frontDeskOverallRanking`,
frontOfficeCompetitionRanking: `${host1}competition/competition/rank/frontOfficeCompetitionRanking`,
stageGradeManagementList: `${host1}competition/competition/performance/stageGradeManagementList`,
// 阿里云文件/视频管理
fileDeletion: `${uploadURL}oss/manage/fileDeletion`, // 删除OSS文件

@ -0,0 +1,48 @@
/**
* 大赛配置
* */
export default {
rules: [
{
id: 0,
name: '积分赛'
},
{
id: 1,
name: '淘汰赛'
},
{
id: 2,
name: '单项赛'
}
],
methods: [
{
id: 0,
name: '实操'
},
{
id: 1,
name: '理论'
},
{
id: 2,
name: '线下'
}
],
teamCalculationMethods: [
{
id: 0,
name: '最高分'
},
{
id: 1,
name: '平均分'
},
{
id: 2,
name: '总分'
}
],
}

@ -138,12 +138,19 @@
</div>
</div>
</el-dialog>
<!-- 购买弹框 -->
<el-dialog title="温馨提示" :visible.sync="buyVisible" width="400px" center :close-on-click-modal="false">
<div class="buy">
<p class="tips">您所选择的院校暂未在本平台开通组织账号请通知院校老师联系下方二维码客服咨询</p>
<img src="@/assets/img/wechat-code.jpeg" alt="">
</div>
</el-dialog>
<el-dialog title="账号申请" :visible.sync="accountVisible" :close-on-click-modal="false" width="500px" @close="accountClose">
<el-form class="dia-form" ref="accountForm" label-width="80px" :model="accountRules" :rules="accountRules">
<el-form-item prop="userName" label="所属院校">
<el-select class="w-100" v-model="accountForm.schoolId" filterable placeholder="请选择院校">
<el-select class="w-100" v-model="accountForm.schoolId" filterable placeholder="请选择院校" @change="schoolChange">
<el-option v-for="(item, i) in schoolList" :key="i" :label="item.schoolName" :value="item.schoolId"></el-option>
</el-select>
</el-form-item>
@ -285,6 +292,7 @@ export default {
password: [{ required: true, message: "请输入密码", trigger: "blur" }],
code: [{ required: true, message: "请输入验证码", trigger: "blur" }]
},
buyVisible: false
};
},
computed: {
@ -516,6 +524,18 @@ export default {
toAccount() {
this.accountVisible = true
},
//
schoolChange(schoolId) {
this.$get(this.api.getCustomerBySchoolId, {
schoolId
}).then(res => {
if (!res) {
this.accountVisible = false
this.buyVisible = true
}
// util.successMsg(message)
}).catch(res => {})
},
//
sendCode() {
const { phone } = this.accountForm
@ -957,6 +977,16 @@ export default {
align-items: center;
}
}
.buy {
text-align: center;
.tips {
margin-bottom: 10px;
font-size: 14px;
}
img {
width: 85%;
}
}
@media (max-height: 680px) {
.wrap .login {
padding: 40px 0;

@ -11,9 +11,11 @@
</el-tabs>
<div class="action">
<p class="end-text" v-if="status != 5">
距离{{ endList[status] }}还有<em>{{ end }}</em>
距离{{ endList[status] }}还有
<template v-if="end > 0"><em>{{ end }}</em> </template>
<em v-else-if="end" v-countdown>{{ end }}</em>
</p>
<a 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 || status == 4,signing: status == 2,signed: status == 1,finish: status == 3 || status == 5}" @click.stop="signup">{{ statusList[status] }}</a>
</div>
</div>
<div class="info">
@ -33,6 +35,21 @@
</li>
</ul>
</template>
<div class="l-title" id="part1"><img src="@/assets/img/label.png" alt=""> 赛程规则与内容</div>
<h6 class="rule-title">共3个竞赛阶段同一个团队每个成员只能参加一个阶段赛项</h6>
<div v-for="(rule, i) in form.competitionStage" :key="i" class="rule">
<p>{{ rule.stageName }}</p>
<p>比赛时间{{ rule.startTime + ' ~ ' + rule.endTime }}</p>
<p>比赛方式{{ methods.find(e => e.id == rule.method) && methods.find(e => e.id == rule.method).name }}</p>
<p>课程系统{{ rule.systemName }}</p>
<template v-if="form.completeCompetitionSetup.competitionType">
<p>团队参赛人数限制{{ rule.teamNumLimit }}</p>
<p>团队成绩计算方式{{ teamCalculationMethods.find(e => e.id == rule.teamCalculationMethod) && teamCalculationMethods.find(e => e.id == rule.teamCalculationMethod).name }}</p>
</template>
<p>阶段比赛结束后{{ rule.resultAnnouncementTime }}小时公布阶段比赛成绩</p>
</div>
<!-- 进展 -->
<div class="l-title" id="part2"><img src="@/assets/img/label.png" alt=""> 竞赛进展</div>
@ -70,6 +87,157 @@
</div>
</div>
</template>
<!-- 竞赛排名 -->
<template v-if="form.competitionRegistration && form.competitionRegistration.teamId">
<div class="l-title" id="part4"><img src="@/assets/img/label.png" alt=""> 竞赛排名</div>
<el-tabs v-model="curArch" @tab-click="getRank">
<el-tab-pane v-for="(item, index) in arches" :key="index" :label="item.stageName + '排名'" :name="item.stageId"></el-tab-pane>
</el-tabs>
<el-table ref="table" :data="ranks" stripe header-align="center">
<el-table-column type="index" width="60" label="排名" align="center"></el-table-column>
<el-table-column prop="teamName" label="团队名称"></el-table-column>
<el-table-column prop="leaderName" label="队长"></el-table-column>
<el-table-column prop="schoolName" label="学校"></el-table-column>
<el-table-column prop="school" label="用时">
<template slot-scope="scope">
{{ scope.row.timeSum }}min
</template>
</el-table-column>
<el-table-column prop="score" label="分数"></el-table-column>
</el-table>
</template>
<div class="l-title m-t-20" id="part4"><img src="@/assets/img/label.png" alt=""> 参赛信息</div>
<table class="table">
<template v-if="!form.completeCompetitionSetup.competitionType || info.team.captain">
<tr>
<th width="150">姓名</th>
<td>{{ info.person.userName }}</td>
</tr>
<tr>
<th>学号</th>
<td>{{ info.person.workNumber }}</td>
</tr>
<tr>
<th>学校</th>
<td>{{ info.person.schoolName }}</td>
</tr>
</template>
<template v-if="form.completeCompetitionSetup.competitionType">
<tr>
<th>团队名称</th>
<td>
<el-input v-if="info.team.captain === 0" :disabled="!editing" v-model="info.team.teamName"></el-input>
<span v-else>{{ info.team.teamName }}</span>
</td>
</tr>
<template v-if="info.team.captain">
<tr>
<th>队长</th>
<td>{{ info.caption.userName }}{{ info.caption.schoolName && ',' + info.caption.schoolName }}{{ info.caption.workNumber && ',' + info.caption.workNumber }}</td>
</tr>
<tr>
<th>团队成员</th>
<td>
<el-tag v-for="(item, i) in info.teamDetail" :key="i" style="margin-right: 5px">{{ item.userName }}</el-tag>
</td>
</tr>
</template>
</template>
<tr>
<th>指导老师</th>
<td v-if="info.team.captain === 0 || !form.completeCompetitionSetup.competitionType">
<div class="plus">
<i class="el-icon-circle-plus-outline icon" @click="addAdvisor"></i>
</div>
<div v-for="(item, i) in info.teamInstructors" :key="i" class="line">
<el-input placeholder="请输入姓名" v-model="item.name" clearable size="mini"></el-input>
<el-input placeholder="请输入职务" maxlength="10" v-model="item.position" clearable size="mini"></el-input>
<el-input placeholder="请输入联系方式" maxlength="11" v-model="item.phone" clearable size="mini"></el-input>
<i class="el-icon-check icon" @click="submitAdvisor(item)"></i>
<i class="el-icon-delete icon" @click="delAdvisor(item, i)"></i>
</div>
</td>
<td v-else>
{{ info.teamInstructors.map(e => e.name).join(',')}}
</td>
</tr>
<tr v-if="form.completeCompetitionSetup.competitionType">
<th>团队邀请码</th>
<td>
<el-input v-if="info.team.captain === 0" :disabled="!editing" v-model="info.team.invitationCode"></el-input>
<span v-else>{{ info.team.invitationCode }}</span>
</td>
</tr>
<tr>
<th>竞赛阶段</th>
<td>
<table class="table tc">
<tr>
<th width="80">序号</th>
<th>赛项阶段名称</th>
<template v-if="form.completeCompetitionSetup.competitionType">
<th>参赛人数限制</th>
<th>允许参赛人员</th>
<th v-if="info.team.captain === 0 && form.rule === 0">总分</th>
</template>
<th>竞赛成绩</th>
</tr>
<template v-if="info.stages.length">
<tr v-for="(item, i) in info.stages" :key="i">
<td>{{ i + 1 }}</td>
<td>{{ item.stageName }}</td>
<template v-if="form.completeCompetitionSetup.competitionType">
<td>{{ item.peopleLimit }}</td>
<td>
<el-button :disabled="!editing" type="danger" size="mini" @click="selectPar(item)">修改</el-button>
<span class="m-l-5">{{ item.teamParticipantIds }}</span>
</td>
<td v-if="info.team.captain === 0 && form.rule === 0"></td>
</template>
<td>
<span v-if="item.score" class="m-r-10">分数{{item.score}}</span>
<el-button type="text" :disabled="item.resultsDetails === 1" @click="show(item)">查看成绩详情</el-button>
</td>
</tr>
</template>
<tr v-else>
<td colspan="6">暂无数据</td>
</tr>
</table>
<el-alert
v-if="form.completeCompetitionSetup.competitionType && info.team.captain === 0"
style="margin-top: 10px;"
title="注:请团长(团队创建人)设置各阶段参赛成员,只有被选择的允许参赛成员可进入对应阶段比赛,每个团队成员只能参加一个赛项阶段!"
type="warning"
show-icon>
</el-alert>
</td>
</tr>
</table>
<div v-if="form.completeCompetitionSetup.competitionType && info.team.captain === 0" class="m-t-20 text-center">
<el-button type="primary" @click="edit">{{ editing ? '保存' : '编辑' }}</el-button>
</div>
<template v-if="form.completeCompetitionSetup.competitionType && info.team.captain === 0">
<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>
</div>
<el-table :data="info.teamDetail" stripe header-align="center">
<el-table-column prop="userName" label="成员姓名" min-width="100" align="center"></el-table-column>
<el-table-column prop="schoolName" label="学校" min-width="100" align="center"></el-table-column>
<el-table-column prop="workNumber" label="学号" min-width="100" align="center"></el-table-column>
<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>
</template>
</el-table-column>
</el-table>
</template>
</div>
</div>
</div>
@ -115,6 +283,56 @@
<el-button size="small" @click="teamVisible = false">取消</el-button>
</span>
</el-dialog>
<el-dialog title="选择参赛成员" :visible.sync="transferVisible" :close-on-click-modal="false" width="400px">
<template v-for="(item, i) in info.teamDetail">
<el-radio v-if="item.captain" :key="i" v-model="checkedPlayer" :label="item.teamId">{{ item.userName }}</el-radio>
</template>
<span slot="footer" class="dialog-footer">
<el-button size="small" type="primary" @click="transferSubmit">确定</el-button>
<el-button size="small" @click="transferVisible = false">取消</el-button>
</span>
</el-dialog>
<el-dialog title="选择参赛成员" :visible.sync="chooseVisible" :close-on-click-modal="false" width="400px">
<template v-if="info.teamLimit">
<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-else v-model="checkedMembers">
<el-checkbox v-for="(item, i) in info.teamDetail" :key="i" :label="item.accountId">{{ item.userName }}</el-checkbox>
</el-checkbox-group>
<p v-if="info.teamLimit" style="margin-top: 15px;font-size: 12px;">当前阶段限制1人参赛且此竞赛每个成员只能参加一个阶段赛项</p>
<span slot="footer" class="dialog-footer">
<el-button size="small" type="primary" @click="chooseSubmit">确定</el-button>
<el-button size="small" @click="chooseVisible = false">取消</el-button>
</span>
</el-dialog>
<el-dialog title="团队得分详情" :visible.sync="memberVisible" width="900px" :close-on-click-modal="false">
<h6 v-if="members.length" style="margin-bottom: 10px;font-size: 16px;">团队名称{{ members[0].teamName }} 阶段名称{{ curRow.stageName }}</h6>
<table class="table tc">
<tr>
<th width="60">序号</th>
<th width="100">姓名</th>
<th width="100">学校</th>
<th width="100">用时</th>
<th width="100">分数</th>
<th width="100">得分详情</th>
</tr>
<tr v-for="(item, i) in members" :key="i">
<td>{{ i + 1 }}</td>
<td>{{ item.userName }}</td>
<td>{{ item.schoolName }}</td>
<td>{{ item.timeSum }}min</td>
<td>{{ item.score }}</td>
<td>
<el-button type="text" @click="toReport(item)">查看</el-button>
</td>
</tr>
</table>
<span slot="footer" class="dialog-footer">
<el-button size="small" type="primary" @click="memberVisible = false">确定</el-button>
</span>
</el-dialog>
</div>
</template>
@ -123,15 +341,19 @@ import { mapMutations } from "vuex";
import breadcrumb from '@/components/breadcrumb'
import util from '@/libs/util'
import Setting from "@/setting"
import Const from '@/const/match'
export default {
name: 'matchdetail',
data() {
return {
id: this.$route.query.id,
id: +this.$route.query.id,
end: '',
status: '',
statusList: ["等待报名", "报名", "立即报名", "报名截止", "进入初赛", "已结束"],
statusList: ["等待报名", "取消报名", "立即报名", "报名截止", "进入初赛", "已结束"],
endList: ["报名开始", "报名截止", "报名截止", "竞赛开始", "竞赛结束", ""],
rules: Const.rules,
methods: Const.methods,
teamCalculationMethods: Const.teamCalculationMethods,
form: {
name: '',
coverUrl: '',
@ -140,7 +362,8 @@ export default {
signUpEndTime: '',
playStartTime: '',
playEndTime: '',
completeCompetitionSetup: {}
completeCompetitionSetup: {},
competitionRegistration: {}
},
curType: '1',
typeList: [
@ -161,13 +384,17 @@ export default {
timer: null,
notices: [],
noticeDetail: {},
curArch: '0',
arches: [],
ranks: [],
enterVisible: false,
enterForm: {
competitionId: this.$route.query.id,
teamId: '',
invitationCode: '',
registrationInvitationCode: ''
registrationInvitationCode: '',
whetherSignUp: 1
},
teamVisible: false,
@ -178,8 +405,35 @@ export default {
registrationInvitationCode: '',
teamName: '',
invitationCode: '',
whetherSignUp: 1
},
curStage: null,
info: {
isCaption: 0,
person: {},
caption: {},
team: {
captain: 1,
invitationCode: ''
},
stages: [],
teamDetail: [],
teamInstructors: []
},
curStage: null
originIns: {
position: '',
name: '',
phone: '',
},
checkedPlayer: '',
transferVisible: false,
editing: false,
memberVisible: false,
members: [],
curRow: {},
chooseVisible: false,
checkedMember: '',
checkedMembers: []
};
},
components: {
@ -188,16 +442,17 @@ export default {
directives: {
countdown: {
bind: function(el, binding, vnode) {
let that = vnode.context;
let that = vnode.context
const { form } = that
let time = ''
let second = 1000;
let minute = second * 60;
let hour = minute * 60;
let now = new Date().getTime();
let signUpStartTime = new Date(that.core.dateCompatible(that.signUpStartTime)).getTime(); //
let signUpEndTime = new Date(that.core.dateCompatible(that.signUpEndTime)).getTime(); //
let playStartTime = new Date(that.core.dateCompatible(that.playStartTime)).getTime(); //
let playEndTime = new Date(that.core.dateCompatible(that.playEndTime)).getTime(); //
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(); //
switch (that.status) {
// statusgetData
case 0:
@ -258,7 +513,6 @@ export default {
this.getData()
this.getProgress()
this.getNotice()
this.getTeam()
},
methods: {
@ -268,7 +522,6 @@ export default {
getData() { //
this.$post(`${this.api.getCompetition}?competitionId=${this.id}`).then(({ competition }) => {
this.handleStatus(competition)
console.log("🚀 ~ file: index.vue:273 ~ this.$post ~ competition", competition)
const list = competition.competitionAnnexList
//
if (list) {
@ -277,7 +530,20 @@ export default {
e.canPreview = util.canPreview(filePath.substr(filePath.lastIndexOf('.') + 1))
})
}
const arches = []
//
competition.rule === 0 && arches.push({
stageId: '0',
stageName: '总分'
})
arches.push(...competition.competitionStage)
arches.map(e => e.stageId = e.stageId + '')
this.arches = arches
this.form = competition
const type = competition.completeCompetitionSetup.competitionType
const reg = competition.competitionRegistration
if (!type || (type && reg)) this.getInfo()
reg && reg.teamId && this.getRank()
this.$refs.breadcrumb.update('全部赛事/' + competition.name)
}).catch(err => {})
},
@ -305,9 +571,9 @@ export default {
total = playStartTime - now
} else if (now > playStartTime && now < playEndTime) { //
//
if (n.competitionStage) {
if (n.competitionStage && n.competitionRegistration) {
for (const e of n.competitionStage) {
if (now > new Date(e.startTime) && now < new Date(e.endTime) && !e.count) {
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
@ -326,6 +592,41 @@ export default {
this.end = day ? day + '天' : time
}
},
//
getInfo() {
this.$post(`${this.api.entryInformation}?competitionId=${this.id}`).then(res => {
const info = res.entryInformation
if (!info.teamInstructors.length) info.teamInstructors.push(this.originIns)
if (info.personalDetail) {
info.team = {}
info.teamDetail = []
} else {
info.isCaption = info.team.caption
}
const caption = info.teamDetail.find(e => !e.caption)
info.caption = caption ? caption : {}
info.person = info.personalDetail || info.teamDetail.find(e => e.accountId == info.team.accountId)
this.info = info
}).catch(err => {});
},
//
edit() {
if (this.editing) {
const { teamId, teamName, invitationCode } = this.info.team
this.$post(this.api.addCompetitionTeam, {
competitionId: this.id,
teamId,
teamName,
invitationCode,
whetherSignUp: 0
}).then(res => {
this.getInfo()
util.successMsg('保存成功')
}).catch(res => {})
} else {
this.editing = !this.editing
}
},
getProgress() { //
this.$get(this.api.getCompetitionProgress, {
competitionId: this.id
@ -361,6 +662,139 @@ export default {
toNotice(item) {
this.$router.push(`noticeDetail?id=${item.id}&matchId=${this.id}&name=${this.form.name}&end=${this.end}&status=${this.status}`)
},
//
getRank() {
const cur = +this.curArch
const data = {
pageNum: 1,
pageSize: 1000,
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 => {})
// }
},
//
delAdvisor(row, i) {
if (row.id) {
this.$confirm('确定要删除吗?', '提示', {
type: 'warning'
}).then(() => {
this.$post(`${this.api.deleteAnAdvisor}?id=${row.id}`).then(res => {
util.successMsg('删除成功')
// this.getClassification()
}).catch(res => {})
}).catch(() => {})
} else {
this.classifications.splice(i, 1)
}
},
//
addAdvisor() {
if (this.info.teamInstructors.length > 5)
this.info.teamInstructors.push(JSON.parse(JSON.stringify(this.originIns)))
},
//
submitAdvisor(row) {
if (!row.name) return util.errorMsg('请输入姓名')
this.$post(this.api.addAnAdvisor, {
name: row.name,
competitionId: this.id,
id: row.id,
teamId: this.form.competitionRegistration ? this.form.competitionRegistration.teamId : '',
phone: row.phone,
position: row.position,
}).then(res => {
util.successMsg((row.id ? '修改' : '新增') + '成功')
this.getInfo()
}).catch(res => {})
},
//
transfer() {
this.transferVisible = true
},
//
transferSubmit() {
if (!this.checkedPlayer) return util.errorMsg('请选择成员')
this.$post(this.api.captainOfTransfer, {
captainId: this.info.caption.teamId,
playerId: this.checkedPlayer
}).then(res => {
util.successMsg('转让成功')
this.transferVisible = false
this.getInfo()
}).catch(res => {})
},
//
removeLine(row) {
this.$post(`${this.api.removeTheLine}?teamId=${row.teamId}`).then(res => {
util.successMsg('移除成功')
this.getInfo()
}).catch(res => {})
},
//
selectPar(row) {
const item = this.form.competitionStage.find(e => e.stageId == row.stageId)
if (item) {
//
const now = new Date()
if (now >= new Date(item.startTime) && now <= new Date(item.endTime)) {
return util.errorMsg('该阶段比赛已经开始,无法修改允许参赛人员!')
} else {
this.curRow = row
this.chooseVisible = true
}
}
},
//
chooseSubmit() {
this.$post(this.api.stageSelectParticipants, {
accountIds: this.info.teamLimit ? [this.checkedMember] : this.checkedMembers,
competitionId: this.id,
stageId: this.curRow.stageId,
teamId: this.form.competitionRegistration.teamId
}).then(res => {
util.successMsg('修改成功')
this.getInfo()
this.chooseVisible = false
}).catch(res => {})
},
//
show(row) {
//
if (this.form.completeCompetitionSetup.competitionType && this.info.team.captain === 0) { //
this.curRow = row
this.memberVisible = true
const teamId = this.form.competitionRegistration.teamId
if (teamId) {
this.$post(this.api.stageGradeManagementList, {
pageNum: 1,
pageSize: 1000,
competitionId: this.id,
stageId: row.stageId,
isNakadai: 0
}).then(({ page }) => {
this.members = page.records.filter(e => e.teamId === teamId)
}).catch(res => {})
} else {
this.members = []
}
} else if (row.reportId) { // reportId
this.$router.push(`/record/show?reportId=${row.reportId}`)
}
},
//
enterSubmit() {
@ -380,7 +814,8 @@ export default {
competitionId: this.id,
teamId: '',
registrationInvitationCode: '',
invitationCode: ''
invitationCode: '',
whetherSignUp: 1
}
},
@ -418,20 +853,35 @@ export default {
competitionId: this.id,
teamName: '',
invitationCode: '',
registrationInvitationCode: ''
registrationInvitationCode: '',
whetherSignUp: 1
}
},
//
signup(){
const { status } = this
const { status, form } = this
//
if (util.local.get(Setting.tokenKey)) {
if (status == 4) { //
if (form.isDisable === 1) return util.errorMsg('当前用户已被禁赛,如有疑问,请联系平台管理员。') //
//
if (form.rule === 1) {
this.$post(this.api.allowedParticipateCompetition, {
competitionId: this.id,
number: this.curStage.number,
stageId: this.curStage.stageId,
teamId: form.competitionRegistration.teamId,
}).then(res => {
// this.toSub()
}).catch(res => {})
} else {
this.toSub()
}
this.toSub()
} else if (status == 2) { //
//
if (this.form.completeCompetitionSetup.competitionType) {
if (form.completeCompetitionSetup.competitionType) {
this.enterVisible = true
} else { //
this.$post(this.api.addCompetitionRegistration, {
@ -471,7 +921,7 @@ export default {
util.cookies.set('projectId', form.projectId)
util.cookies.set('token', token)
util.cookies.set('courseId', form.cid)
// util.cookies.set('curriculumName', escape(this.curriculumName))
util.cookies.set('curriculumName', escape(form.systemName))
util.cookies.set('systemId', form.systemId)
util.cookies.set('competitionId', this.form.id)
util.cookies.set('stageId', form.stageId)
@ -487,14 +937,13 @@ export default {
//
toSub() {
const { form } = this
const { systemId, projectId, cid } = this.curStage
const { systemId, projectId, cid, stageId } = this.curStage
const competitionId = form.id
const { stageId } = form
const teamId = form.competitionRegistration.teamId
let token = util.local.get(Setting.tokenKey);
if (systemId == 11) {
//
location.href = `${Setting.systemPath}/#/index/list?curriculumName=${this.curriculumName}&token=${token}&cid=${this.courseId}&systemId=${systemId}&projectId=${projectId}&competitionId=${competitionId}&stageId=${stageId}&teamId=${teamId}&assessmentId=&classId=&stopTime=&test=true`
location.href = `${Setting.systemPath}/#/index/list?curriculumName=${this.curriculumName}&token=${token}&cid=${cid}&systemId=${systemId}&projectId=${projectId}&competitionId=${competitionId}&stageId=${stageId}&teamId=${teamId}&assessmentId=&classId=&stopTime=&test=true`
} else if (systemId == 12) {
//
window.open(`http://120.78.139.126:8879?systemId=${systemId}&courseId=${cid}&projectId=${projectId}&token=${token}&userId=${this.userId}&classId=1&competitionId=${competitionId}&stageId=${stageId}&teamId=${teamId}`);
@ -526,6 +975,19 @@ export default {
.main .center-wrap {
margin-top: 30px;
}
.rule-title {
margin-bottom: 10px;
font-size: 16px;
}
.rule {
padding: 15px;
margin-bottom: 15px;
border: 1px solid #dfdfdf;
p {
font-size: 14px;
line-height: 30px;
}
}
.content{
position: relative;
padding: 20px 40px;
@ -804,6 +1266,44 @@ export default {
text-overflow: ellipsis;
}
}
.table {
width: 100%;
border-collapse: collapse;
th, td {
padding: 12px;
border: 1px solid #ebeef5;
}
&.tc {
text-align: center;
}
th {
text-align: center;
background-color: #f8faff;
}
.icon {
margin-right: 10px;
font-size: 16px;
color: #7a7a7a;
cursor: pointer;
}
.plus {
margin-bottom: 10px;
text-align: right;
}
.line {
display: flex;
align-items: center;
.el-input {
margin-right: 15px;
}
}
}
.flex-center {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 15px;
}
/deep/.dia-form {
.w-100 {
width: 100%;

@ -79,15 +79,6 @@
</div>
<span v-else class="val">{{ item.sponsor }}</span>
</div>
</template>
<template v-if="item.undertaker">
<div :class="{'flex-top': item.undertaker.split(',').length > 1}">
<span class="label">承办方</span>
<div v-if="item.undertaker.split(',').length > 1" class="val a-line">
<template v-for="undertaker in item.undertaker.split(',')">{{ undertaker }}</template>
</div>
<span v-else class="val">{{ item.undertaker }}</span>
</div>
</template>
<div>
<span class="label">报名时间</span><span class="val">{{ item.signUpStartTime}} ~ {{ item.signUpEndTime }}</span>
@ -98,6 +89,12 @@
<div>
<span class="label">比赛范围</span><span class="val">{{ item.ranges }}</span>
</div>
<div>
<span class="label">比赛类型</span><span class="val">{{ item.setup.competitionType ? '团体赛' : '个人赛' }}</span>
</div>
<div v-if="item.curStage">
<span class="label">当前阶段</span><span class="val">{{ item.curStage.stageName }}</span>
</div>
</div>
</div>
</div>
@ -108,7 +105,8 @@
@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] }}还有
<em>{{ item.end }}</em>
<template v-if="item.end > 0"><em>{{ item.end }}</em> </template>
<em v-else v-countdown="index">{{ item.end }}</em>
</p>
</div>
</li>
@ -189,7 +187,7 @@ export default {
return {
timer: null,
token: util.local.get(Setting.tokenKey),
statusList: ["等待报名", "报名", "立即报名", "报名截止", "进入初赛", "已结束"],
statusList: ["等待报名", "取消报名", "立即报名", "报名截止", "进入初赛", "已结束"],
endList: ["报名开始", "报名截止", "报名截止", "竞赛开始", "竞赛结束", ""],
typeList: [
{
@ -274,7 +272,8 @@ export default {
competitionId: '',
teamId: '',
invitationCode: '',
registrationInvitationCode: ''
registrationInvitationCode: '',
whetherSignUp: 1
},
teamVisible: false,
@ -285,10 +284,83 @@ export default {
registrationInvitationCode: '',
teamName: '',
invitationCode: '',
whetherSignUp: 1
},
curItem: {}
};
},
directives: {
countdown: {
bind: function(el, binding, vnode) {
let that = vnode.context;
let item = that.listData[binding.value];
let time = ''
let second = 1000;
let minute = second * 60;
let hour = minute * 60;
let now = new Date().getTime();
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(); //
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;
}
time = `${Math.floor(time / hour)}:${Math.floor(time % hour / minute)}:${Math.floor(time % hour % minute / second)}`;
let timer = setInterval(() => {
let timeList = time.split(":");
let total = Number.parseInt(timeList[0] * 60 * 60) + Number.parseInt(timeList[1] * 60) + Number.parseInt(timeList[2]);
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 {
clearInterval(timer);
}
el.innerHTML = time;
}, 1000);
that.timerList.push(timer);
}
}
},
computed: {
...mapState('match', [
'eventType'
@ -308,7 +380,10 @@ export default {
this.getProvince()
this.getData()
this.$once('hook:beforeDestroy', function() {
clearInterval(this.timer)
this.timerList.forEach(n => {
clearInterval(n)
})
this.timerList = []
})
},
methods: {
@ -357,9 +432,9 @@ export default {
} else if (now > playStartTime && now < playEndTime) { //
//
let curStage = null
if (n.competitionStageList) {
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) {
if (now > new Date(e.startTime) && now < new Date(e.endTime) && !e.count && e.method !== 2) {
n.stageName = '进入' + e.stageName
curStage = e
break
@ -402,10 +477,6 @@ export default {
getData() {
this.loadIns = Loading.service()
this.getList()
// if (!Setting.isDev) {
// clearInterval(this.timer)
// this.timer = setInterval(this.getList, 1000)
// }
},
initData() {
this.page = 1
@ -479,7 +550,8 @@ export default {
competitionId: this.curItem.id,
teamName: '',
invitationCode: '',
registrationInvitationCode: ''
registrationInvitationCode: '',
whetherSignUp: 1
}
this.teamVisible = true
},
@ -508,12 +580,25 @@ export default {
},
//
signup(item) {
const { status, id } = item
const { status, id, rule } = item
//
if (util.local.get(Setting.tokenKey)) {
this.curItem = item
if (status == 4) { //
this.toSub()
if (item.isDisable === 1) return util.errorMsg('当前用户已被禁赛,如有疑问,请联系平台管理员。') //
//
if (rule === 1) {
this.$post(this.api.allowedParticipateCompetition, {
competitionId: id,
number: item.curStage.number,
stageId: item.curStage.stageId,
teamId: item.teamId,
}).then(res => {
this.toSub()
}).catch(res => {})
} else {
this.toSub()
}
} else if (status == 2) { //
//
if (item.setup.competitionType) {
@ -563,7 +648,7 @@ export default {
util.cookies.set('projectId', form.projectId)
util.cookies.set('token', token)
util.cookies.set('courseId', form.cid)
// util.cookies.set('curriculumName', escape(this.curriculumName))
util.cookies.set('curriculumName', escape(form.systemName))
util.cookies.set('systemId', form.systemId)
util.cookies.set('competitionId', this.curItem.id)
util.cookies.set('stageId', form.stageId)
@ -579,20 +664,19 @@ export default {
//
toSub() {
const form = this.curItem
const { systemId, projectId, cid } = form.curStage
const { systemId, projectId, cid, stageId } = form.curStage
const competitionId = form.id
const { stageId } = form
const teamId = form.competitionRegistration.teamId
const teamId = form.teamId
let token = util.local.get(Setting.tokenKey);
if (systemId == 11) {
//
location.href = `${Setting.systemPath}/#/index/list?curriculumName=${this.curriculumName}&token=${token}&cid=${this.courseId}&systemId=${systemId}&projectId=${projectId}&competitionId=${competitionId}&stageId=${stageId}&teamId=${teamId}&assessmentId=&classId=&stopTime=&test=true`
location.href = `${Setting.systemPath}/#/index/list?curriculumName=${this.curriculumName}&token=${token}&cid=${cid}&systemId=${systemId}&projectId=${projectId}&competitionId=${competitionId}&stageId=${stageId}&teamId=${teamId}&assessmentId=&classId=&stopTime=&test=true`
} else if (systemId == 12) {
//
window.open(`http://120.78.139.126:8879?systemId=${systemId}&courseId=${cid}&projectId=${projectId}&token=${token}&userId=${this.userId}&classId=1&competitionId=${competitionId}&stageId=${stageId}&teamId=${teamId}`);
} else {
// python
this.toPython(this.curProject)
this.toPython()
}
}
}
@ -637,6 +721,9 @@ export default {
.main{
background: url(../../../assets/img/match-bg1.png) (0px 95px)/auto auto no-repeat,
url(../../../assets/img/match-bg2.png) (98% bottom)/auto auto no-repeat;
.center-wrap {
width: 1078px;
}
}
.filter {
width: 100%;
@ -808,8 +895,8 @@ export default {
display: inline-flex;
.cover {
img {
width: 220px;
height: 140px;
width: 298px;
height: 190px;
border-radius: 6px;
}
}

@ -69,13 +69,6 @@
</div>
<span v-else class="val">{{ item.sponsor }}</span>
</div>
<div :class="{'flex-top': item.undertaker.split(',').length > 1}">
<span class="label">承办方</span>
<div v-if="item.undertaker.split(',').length > 1" class="val a-line">
<template v-for="undertaker in item.undertaker.split(',')">{{ undertaker }}</template>
</div>
<span v-else class="val">{{ item.undertaker }}</span>
</div>
<div>
<span class="label">报名时间</span><span class="val">{{ item.signUpStartTime}} ~ {{ item.signUpEndTime }}</span>
</div>
@ -95,7 +88,8 @@
@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] }}还有
<em>{{ item.end }}</em>
<template v-if="item.end > 0"><em>{{ item.end }}</em> </template>
<em v-else v-countdown="index">{{ item.end }}</em>
</p>
</div>
</li>
@ -178,7 +172,7 @@ export default {
timer: null,
token: util.local.get(Setting.tokenKey),
way: 2,
statusList: ["等待报名", "报名", "立即报名", "报名截止", "进入初赛", "已结束"],
statusList: ["等待报名", "取消报名", "立即报名", "报名截止", "进入初赛", "已结束"],
endList: ["报名开始", "报名截止", "报名截止", "竞赛开始", "竞赛结束", ""],
typeList: [
{
@ -255,10 +249,83 @@ export default {
registrationInvitationCode: '',
teamName: '',
invitationCode: '',
whetherSignUp: 1
},
curItem: {}
};
},
directives: {
countdown: {
bind: function(el, binding, vnode) {
let that = vnode.context;
let item = that.listData[binding.value];
let time = ''
let second = 1000;
let minute = second * 60;
let hour = minute * 60;
let now = new Date().getTime();
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(); //
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;
}
time = `${Math.floor(time / hour)}:${Math.floor(time % hour / minute)}:${Math.floor(time % hour % minute / second)}`;
let timer = setInterval(() => {
let timeList = time.split(":");
let total = Number.parseInt(timeList[0] * 60 * 60) + Number.parseInt(timeList[1] * 60) + Number.parseInt(timeList[2]);
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 {
clearInterval(timer);
}
el.innerHTML = time;
}, 1000);
that.timerList.push(timer);
}
}
},
computed: {
...mapState('match', [
'toMatch'
@ -273,11 +340,14 @@ export default {
}
},
mounted() {
this.getProvince()
this.getData()
this.$once('hook:beforeDestroy', function() {
clearInterval(this.timer)
this.getProvince()
this.getData()
this.$once('hook:beforeDestroy', function() {
this.timerList.forEach(n => {
clearInterval(n)
})
this.timerList = []
})
},
methods: {
...mapMutations('match', [
@ -324,9 +394,9 @@ export default {
} else if (now > playStartTime && now < playEndTime) { //
//
let curStage = null
if (n.competitionStageList) {
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) {
if (now > new Date(e.startTime) && now < new Date(e.endTime) && !e.count && e.method !== 2) {
n.stageName = '进入' + e.stageName
curStage = e
break
@ -445,7 +515,8 @@ export default {
competitionId: this.curItem.id,
teamName: '',
invitationCode: '',
registrationInvitationCode: ''
registrationInvitationCode: '',
whetherSignUp: 1
}
this.teamVisible = true
},
@ -474,12 +545,25 @@ export default {
},
//
signup(item) {
const { status, id } = item
const { status, id, rule } = item
//
if (util.local.get(Setting.tokenKey)) {
this.curItem = item
if (status == 4) { //
this.toSub()
if (item.isDisable === 1) return util.errorMsg('当前用户已被禁赛,如有疑问,请联系平台管理员。') //
//
if (rule === 1) {
this.$post(this.api.allowedParticipateCompetition, {
competitionId: id,
number: item.curStage.number,
stageId: item.curStage.stageId,
teamId: item.teamId,
}).then(res => {
this.toSub()
}).catch(res => {})
} else {
this.toSub()
}
} else if (status == 2) { //
//
if (item.setup.competitionType) {
@ -529,7 +613,7 @@ export default {
util.cookies.set('projectId', form.projectId)
util.cookies.set('token', token)
util.cookies.set('courseId', form.cid)
// util.cookies.set('curriculumName', escape(this.curriculumName))
util.cookies.set('curriculumName', escape(form.systemName))
util.cookies.set('systemId', form.systemId)
util.cookies.set('competitionId', this.curItem.id)
util.cookies.set('stageId', form.stageId)
@ -545,14 +629,13 @@ export default {
//
toSub() {
const form = this.curItem
const { systemId, projectId, cid } = form.curStage
const { systemId, projectId, cid, stageId } = form.curStage
const competitionId = form.id
const { stageId } = form
const teamId = form.competitionRegistration.teamId
const teamId = form.teamId
let token = util.local.get(Setting.tokenKey);
if (systemId == 11) {
//
location.href = `${Setting.systemPath}/#/index/list?curriculumName=${this.curriculumName}&token=${token}&cid=${this.courseId}&systemId=${systemId}&projectId=${projectId}&competitionId=${competitionId}&stageId=${stageId}&teamId=${teamId}&assessmentId=&classId=&stopTime=&test=true`
location.href = `${Setting.systemPath}/#/index/list?curriculumName=${this.curriculumName}&token=${token}&cid=${cid}&systemId=${systemId}&projectId=${projectId}&competitionId=${competitionId}&stageId=${stageId}&teamId=${teamId}&assessmentId=&classId=&stopTime=&test=true`
} else if (systemId == 12) {
//
window.open(`http://120.78.139.126:8879?systemId=${systemId}&courseId=${cid}&projectId=${projectId}&token=${token}&userId=${this.userId}&classId=1&competitionId=${competitionId}&stageId=${stageId}&teamId=${teamId}`);

Loading…
Cancel
Save