diff --git a/src/api/index.js b/src/api/index.js index 34b960a..e4ebbc1 100644 --- a/src/api/index.js +++ b/src/api/index.js @@ -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文件 diff --git a/src/const/match.js b/src/const/match.js new file mode 100644 index 0000000..c6c17e1 --- /dev/null +++ b/src/const/match.js @@ -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: '总分' + } + ], +} \ No newline at end of file diff --git a/src/pages/account/login/index.vue b/src/pages/account/login/index.vue index ca1c9b5..0f70b3f 100644 --- a/src/pages/account/login/index.vue +++ b/src/pages/account/login/index.vue @@ -138,12 +138,19 @@ + + +
+

您所选择的院校暂未在本平台开通组织账号,请通知院校老师联系下方二维码客服咨询。

+ +
+
- + @@ -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; diff --git a/src/pages/match/details/index.vue b/src/pages/match/details/index.vue index 739ee6f..8833c91 100644 --- a/src/pages/match/details/index.vue +++ b/src/pages/match/details/index.vue @@ -11,9 +11,11 @@

- 距离{{ endList[status] }}还有{{ end }} + 距离{{ endList[status] }}还有 + + {{ end }}

- {{ statusList[status] }} + {{ statusList[status] }}
@@ -33,6 +35,21 @@ + + +
赛程、规则与内容
+
共3个竞赛阶段,同一个团队每个成员只能参加一个阶段赛项
+
+

{{ rule.stageName }}

+

比赛时间:{{ rule.startTime + ' ~ ' + rule.endTime }}

+

比赛方式:{{ methods.find(e => e.id == rule.method) && methods.find(e => e.id == rule.method).name }}

+

课程系统:{{ rule.systemName }}

+ +

(阶段)比赛结束后{{ rule.resultAnnouncementTime }}小时,公布(阶段)比赛成绩。

+
竞赛进展
@@ -70,6 +87,157 @@
+ + + + +
参赛信息
+ + + + + + + + + + + + + + + + +
指导老师: +
+ +
+
+ + + + + +
+
+ {{ info.teamInstructors.map(e => e.name).join(',')}} +
团队邀请码: + + {{ info.team.invitationCode }} +
竞赛阶段: + + + + + + + + + + + +
序号赛项阶段名称竞赛成绩
暂无数据
+ + +
+
+ {{ editing ? '保存' : '编辑' }} +
+ + @@ -115,6 +283,56 @@ 取消
+ + + + + + 确定 + 取消 + + + + + + {{ item.userName }} + +

注:当前阶段限制1人参赛,且此竞赛每个成员只能参加一个阶段赛项。

+ + 确定 + 取消 + +
+ +
团队名称:{{ members[0].teamName }} 阶段名称:{{ curRow.stageName }}
+ + + + + + + + + + + + + + + + + +
序号姓名学校用时分数得分详情
{{ i + 1 }}{{ item.userName }}{{ item.schoolName }}{{ item.timeSum }}min{{ item.score }} + 查看 +
+ + 确定 + +
@@ -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) { // status每个值的解释请看getData方法 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%; diff --git a/src/pages/match/list/index.vue b/src/pages/match/list/index.vue index 123063b..0853ad2 100644 --- a/src/pages/match/list/index.vue +++ b/src/pages/match/list/index.vue @@ -79,15 +79,6 @@ {{ item.sponsor }} - -
报名时间:{{ item.signUpStartTime}} ~ {{ item.signUpEndTime }} @@ -98,6 +89,12 @@
比赛范围:{{ item.ranges }}
+
+ 比赛类型:{{ item.setup.competitionType ? '团体赛' : '个人赛' }} +
+
+ 当前阶段:{{ item.curStage.stageName }} +
@@ -108,7 +105,8 @@ @click.stop="signup(item)">{{ item.status == 4 ? item.stageName : statusList[item.status] }}

距离{{ endList[item.status] }}还有 - {{ item.end }} + + {{ item.end }}

@@ -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) { + // status每个值的解释请看getData方法 + case 0: + if (now > signUpStartTime) { + item.status = item.whetherToSignUp ? 2 : 1 // 1已报名,2立即报名 + } 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; } } diff --git a/src/pages/touristMatch/list/index.vue b/src/pages/touristMatch/list/index.vue index aaf6f78..0cb84fb 100644 --- a/src/pages/touristMatch/list/index.vue +++ b/src/pages/touristMatch/list/index.vue @@ -69,13 +69,6 @@ {{ item.sponsor }} -
- 承办方: -
- -
- {{ item.undertaker }} -
报名时间:{{ item.signUpStartTime}} ~ {{ item.signUpEndTime }}
@@ -95,7 +88,8 @@ @click.stop="signup(item)">{{ item.status == 4 ? item.stageName : statusList[item.status] }}

距离{{ endList[item.status] }}还有 - {{ item.end }} + + {{ item.end }}

@@ -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) { + // status每个值的解释请看getData方法 + case 0: + if (now > signUpStartTime) { + item.status = item.whetherToSignUp ? 2 : 1 // 1已报名,2立即报名 + } 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}`);