yujialong 2 years ago
parent cb6ecde713
commit 7e2ae10bf7
  1. 2
      src/api/index.js
  2. 10
      src/layouts/home/index.vue
  3. 47
      src/pages/account/login/index.vue
  4. 1
      src/pages/ass/list/index.vue
  5. 224
      src/pages/match/details/index.vue
  6. 16
      src/pages/match/list/index.vue
  7. 1
      src/pages/station/preview/index.vue
  8. 29
      src/pages/touristMatch/list/index.vue

@ -103,6 +103,8 @@ export default {
editCompetitionTeam: `competition/competition/team/editCompetitionTeam`,
promptRemoval: `competition/competition/team/promptRemoval`,
checkPhoneOrEmailExist: `users/users/userInfo/checkPhoneOrEmailExist`,
cancelParticipant: `competition/competition/teamParticipant/cancelParticipant`,
enquireAboutSchoolStudents: `users/users/userAccount/enquireAboutSchoolStudents`,
frontDeskOverallRanking: `${host1}competition/competition/rank/frontDeskOverallRanking`,
frontOfficeCompetitionRanking: `${host1}competition/competition/rank/frontOfficeCompetitionRanking`,
stageGradeManagementList: `${host1}competition/competition/performance/stageGradeManagementList`,

@ -30,7 +30,7 @@
</div>
</div>
<div class="more-wrap">
<el-button class="know" type="primary" size="small" @click="logVisible = false">知道了</el-button>
<el-button class="know" type="primary" size="small" @click="closeLog">知道了</el-button>
</div>
</div>
</div>
@ -120,13 +120,19 @@ export default {
util.local.get(Setting.tokenKey) && this.$get(this.api.logNotification, {
platformId: Setting.platformId
}).then(({ notification }) => {
this.SET_LOG() // true
if (notification) {
this.logVisible = true // true
this.getLog()
} else {
this.SET_LOG() // true
}
}).catch(res => {})
},
//
closeLog() {
this.logVisible = false
this.SET_LOG() // true
},
// ,退
autoLogout() {
let lastTime = new Date().getTime();

@ -148,34 +148,37 @@
<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-form class="dia-form" ref="accountForm" label-width="110px" :model="accountForm" :rules="accountRules">
<el-form-item prop="schoolId" label="所属院校">
<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>
<el-form-item prop="userName" label="姓名">
<el-input placeholder="请输入姓名" v-model="accountForm.userName"></el-input>
</el-form-item>
<el-form-item prop="workNumber" label="学号">
<el-input placeholder="请输入学号" v-model="accountForm.workNumber"></el-input>
<el-input placeholder="申请后无法修改,请确认填写正确" v-model="accountForm.workNumber" @change="workNumberChange"></el-input>
</el-form-item>
<el-form-item prop="userName" label="姓名">
<el-input placeholder="请输入姓名" v-model="accountForm.userName" :disabled="formEnable"></el-input>
</el-form-item>
<el-form-item prop="phone" label="手机号">
<el-input placeholder="请输入手机号" maxlength="11" v-model.trim="accountForm.phone"></el-input>
<el-input placeholder="请输入手机号" maxlength="11" v-model.trim="accountForm.phone" :disabled="formEnable"></el-input>
</el-form-item>
<el-form-item prop="code" label="验证码">
<div class="ver-code">
<el-input v-model="accountForm.code" placeholder="请输入验证码" maxlength="6"></el-input>
<el-button style="top: 1px" type="text" @click="sendCode" :disabled="phoneDisabled">{{ phoneBtnText }}
<el-input v-model="accountForm.code" placeholder="请输入验证码" maxlength="6" :disabled="formEnable"></el-input>
<el-button style="top: 1px" type="text" @click="sendCode" :disabled="phoneDisabled && formEnable">{{ phoneBtnText }}
</el-button>
</div>
</el-form-item>
<el-form-item prop="password" label="登录密码">
<el-input placeholder="请输入登录密码" type="password" maxlength="6" v-model="accountForm.password"></el-input>
<el-input placeholder="请输入登录密码" type="password" maxlength="6" v-model="accountForm.password" :disabled="formEnable"></el-input>
</el-form-item>
<el-form-item prop="rePassword" label="确认登录密码">
<el-input placeholder="请再次输入登录密码" type="password" maxlength="6" v-model="accountForm.rePassword" :disabled="formEnable"></el-input>
</el-form-item>
</el-form>
<span slot="footer" class="dialog-footer">
<el-button size="small" type="primary" @click="accountSubmit">申请</el-button>
<el-button v-if="!formEnable" size="small" type="primary" @click="accountSubmit">申请</el-button>
<el-button size="small" @click="accountVisible = false">取消</el-button>
</span>
</el-dialog>
@ -274,11 +277,13 @@ export default {
infos: [],
accountVisible: false,
formEnable: true,
accountForm: {
schoolId: '',
account: '',
code: '',
password: '',
rePassword: '',
phone: '',
userName: '',
workNumber: '',
@ -290,6 +295,7 @@ export default {
workNumber: [{ required: true, validator: workNumberPass, trigger: "blur" }],
phone: [{ required: true, validator: phonePass, trigger: "blur" }],
password: [{ required: true, message: "请输入密码", trigger: "blur" }],
rePassword: [{ required: true, message: "请再次输入密码", trigger: "blur" }],
code: [{ required: true, message: "请输入验证码", trigger: "blur" }]
},
buyVisible: false
@ -524,6 +530,16 @@ export default {
toAccount() {
this.accountVisible = true
},
//
workNumberChange() {
const form = this.accountForm
form.schoolId && form.workNumber && this.$get(`${this.api.enquireAboutSchoolStudents}?schoolId=${form.schoolId}&workNumber=${form.workNumber}&applyFor=1`).then(({ account }) => {
if (account) this.form = account
this.formEnable = !!account
}).catch(res => {
this.formEnable = true
})
},
//
schoolChange(schoolId) {
this.$get(this.api.getCustomerBySchoolId, {
@ -533,7 +549,6 @@ export default {
this.accountVisible = false
this.buyVisible = true
}
// util.successMsg(message)
}).catch(res => {})
},
//
@ -541,7 +556,7 @@ export default {
const { phone } = this.accountForm
//
phone && this.$get(`${this.api.checkPhoneOrEmailExist}?phone=${phone}&type=1&email=`).then(res => {
if (res) return util.errorMsg('手机号重复,请重新输入!')
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)
@ -554,11 +569,12 @@ export default {
this.$refs.accountForm.validate(valid => {
if (valid) {
const form = this.accountForm
if (form.password !== form.rePassword) return util.errorMsg('两次输入的密码不一致,请重新输入!')
// id-id-schoolId-workNumber
form.account = `${Setting.platformId}-1-${form.schoolId}-${form.workNumber}`
this.$post(this.api.studentAccountApplication, form).then(({ status, data, message }) => {
this.$post(this.api.studentAccountApplication, form).then(res => {
this.accountVisible = false
util.successMsg(message)
util.successMsg('账号申请已提交,需管理员审核,请10分钟后再登录')
}).catch(res => {})
}
})
@ -570,6 +586,7 @@ export default {
account: '',
code: '',
password: '',
rePassword: '',
phone: '',
userName: '',
workNumber: '',

@ -461,6 +461,7 @@ export default {
util.cookies.set("stopTime", this.curRow.stopTime)
util.cookies.set("systemId", curriculumId);
util.cookies.set('fromManager', '', -1)
util.cookies.set('competitionId', '', -1)
let href = ''
if (curriculumId == 11){
href = `${Setting.systemPath}/#/index/list?token=${token}&cid=${this.cid}&systemId=${this.systemId}&projectId=${this.projectId}&assessmentId=${this.assessmentId}&classId=${this.classId}&stopTime=${this.stopTime}`;

@ -5,7 +5,7 @@
<div class="center-wrap">
<breadcrumb ref="breadcrumb" :data="'全部赛事/' + form.name"></breadcrumb>
<div class="content">
<div class="tool flex-between">
<div :class="['tool flex-between', {logView: !logView}]">
<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>
@ -14,7 +14,7 @@
距离{{ endList[status] }}还有
<em>{{ end }}</em>
</p>
<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>
<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}" :title="statusList[status]" @click.stop="signup">{{ statusList[status] }}</a>
</div>
</div>
<div class="info">
@ -25,10 +25,10 @@
<div v-show="curType < 4">
<div class="l-title" id="part1"><img src="@/assets/img/label.png" alt=""> 竞赛信息</div>
<div v-if="form.description" class="texts ql-editor" v-html="form.description"></div>
<template v-if="form.contestAnnexList">
<template v-if="form.competitionAnnexList">
<h6 class="p-title">附件下载</h6>
<ul class="files">
<li v-for="(item, i) in form.contestAnnexList" :key="i">
<li v-for="(item, i) in form.competitionAnnexList" :key="i">
<el-link v-if="item.canPreview" class="m-r-10" type="primary" @click="preview(item)">{{ item.fileName }}</el-link>
<span v-else class="fileName">{{ item.fileName }}</span>
<el-link type="primary" :underline="false" @click="download(item)">下载</el-link>
@ -36,36 +36,37 @@
</ul>
</template>
<div class="l-title"><img src="@/assets/img/label.png" alt=""> 赛程规则与内容</div>
<h6 class="rule-title">{{ form.competitionStage.length }}个竞赛阶段同一个团队每个成员只能参加一个阶段赛项</h6>
<div v-for="(rule, i) in form.competitionStage" :key="i" class="rule">
<p style="font-size: 16px;color: #333;">{{ rule.stageName }}</p>
<p>比赛时间{{ rule.startTime && rule.startTime + ' ~ ' + rule.endTime }}</p>
<p>比赛方式{{ methods.find(e => e.id == rule.method) && methods.find(e => e.id == rule.method).name }}</p>
<p v-if="!rule.method">课程系统{{ rule.systemName }}</p>
<p v-if="rule.onlineButton">线上地点{{ rule.onlineAddress }}</p>
<p v-if="rule.offlineButton">线下地点{{ rule.offlineAddress }}</p>
<template v-if="rule.method === 2">
<p>线下地点{{ rule.offlineAddress }}</p>
<p>比赛内容{{ rule.contentDescription }}</p>
<p>评分规则{{ rule.scoreRule }}</p>
</template>
<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 v-if="form.rule === 1" class="flex">
<p>晋级规则</p>
<div>
<p v-if="rule.peopleLimit">本阶段成绩排名前{{ rule.peopleLimit }}可晋级下一阶段比赛</p>
<p v-if="rule.percentageLimit">本阶段成绩排名前{{ rule.percentageLimit }}%可晋级下一阶段比赛</p>
<p v-if="rule.scoreLimit">本阶段成绩{{ rule.scoreLimit }}可晋级下一阶段比赛</p>
<template v-if="form.releaseType">
<div class="l-title"><img src="@/assets/img/label.png" alt=""> 赛程规则与内容</div>
<h6 class="rule-title">{{ form.competitionStage.length }}个竞赛阶段同一个团队每个成员只能参加一个阶段赛项</h6>
<div v-for="(rule, i) in form.competitionStage" :key="i" class="rule">
<p style="font-size: 16px;color: #333;">{{ rule.stageName }}</p>
<p>比赛时间{{ rule.startTime && rule.startTime + ' ~ ' + rule.endTime }}</p>
<p>比赛方式{{ methods.find(e => e.id == rule.method) && methods.find(e => e.id == rule.method).name }}</p>
<p v-if="!rule.method">课程系统{{ rule.systemName }}</p>
<p v-if="rule.onlineButton">线上地点{{ rule.onlineAddress }}</p>
<p v-if="rule.offlineButton">线下地点{{ rule.offlineAddress }}</p>
<template v-if="rule.method === 2">
<p>线下地点{{ rule.offlineAddress }}</p>
<p>比赛内容{{ rule.contentDescription }}</p>
<p>评分规则{{ rule.scoreRule }}</p>
</template>
<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 v-if="form.rule === 1" class="flex">
<p>晋级规则</p>
<div>
<p v-if="rule.peopleLimit">本阶段成绩排名前{{ rule.peopleLimit }}可晋级下一阶段比赛</p>
<p v-if="rule.percentageLimit">本阶段成绩排名前{{ rule.percentageLimit }}%可晋级下一阶段比赛</p>
<p v-if="rule.scoreLimit">本阶段成绩{{ rule.scoreLimit }}可晋级下一阶段比赛</p>
</div>
</div>
</div>
</div>
</template>
<!-- 进展 -->
<div class="l-title" id="part2"><img src="@/assets/img/label.png" alt=""> 竞赛进展</div>
@ -106,7 +107,7 @@
</div>
<!-- 竞赛排名 -->
<template v-if="curType == 4 && form.competitionRegistration && form.competitionRegistration.teamId">
<template v-if="curType == 4">
<div class="l-title"><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>
@ -186,7 +187,7 @@
<tr>
<th width="130">指导老师</th>
<td v-if="info.team.captain === 0 || !form.completeCompetitionSetup.competitionType">
<div class="plus">
<div v-if="status != 5" 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">
@ -225,12 +226,12 @@
<td>
<table class="table tc">
<tr>
<th width="80">序号</th>
<th>赛项阶段名称</th>
<th width="70">序号</th>
<th width="120">赛项阶段名称</th>
<template v-if="form.completeCompetitionSetup.competitionType">
<th width="110">参赛人数限制</th>
<th>允许参赛人员</th>
<th v-if="info.team.captain === 0 && form.rule === 0">总分</th>
<th v-if="info.team.captain === 0 && form.rule === 0" width="70">总分</th>
</template>
<th>竞赛成绩</th>
</tr>
@ -241,13 +242,23 @@
<template v-if="form.completeCompetitionSetup.competitionType">
<td>{{ item.teamNumLimit || '不限制' }}</td>
<td>
<span class="m-r-5">{{ item.teamParticipantIds || '无' }}</span>
<el-button v-if="info.team.captain === 0" type="danger" size="mini" @click="selectPar(item)">修改</el-button>
<template v-if="item.participants">
<el-tag
v-for="tag in item.participants"
:key="tag.name"
class="m-r-5"
:closable="info.team.captain === 0"
@close="removePar(tag, item)">
{{tag.name}}
</el-tag>
</template>
<span v-else class="m-r-5"></span>
<i v-if="info.team.captain === 0" class="el-icon-edit icon" @click="selectPar(item)"></i>
</td>
<td v-if="info.team.captain === 0 && form.rule === 0 && !i" :rowspan="info.stages.length">{{ info.totalScore }}</td>
</template>
<td>
<span v-if="item.score" class="m-r-10">分数{{item.score}}</span>
<span v-if="item.score > 0" class="m-r-10">分数{{item.score}}</span>
<el-button type="text" :disabled="item.showDetail && item.resultsDetails === 1 || (form.completeCompetitionSetup.competitionType && !item.reportId) || (form.completeCompetitionSetup.competitionType === 0 && !item.reportId)" @click="show(item)">查看成绩详情</el-button>
</td>
</tr>
@ -273,6 +284,12 @@
<p>队长{{ info.caption.userName }}</p>
<el-button type="primary" @click="transfer">转让队长</el-button>
</div>
<el-alert
style="margin: 10px 0;"
title="请确保团队成员人数满足大赛要求,否则无法参加比赛"
type="success"
:closable="false">
</el-alert>
<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>
@ -344,7 +361,7 @@
<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>
<p v-if="info.teamLimit" style="margin-top: 15px;font-size: 12px;">当前阶段限制1人参赛且此竞赛每个成员只能参加一个阶段赛项</p>
<p v-if="info.teamLimit && curRow.teamNumLimit" style="margin-top: 15px;font-size: 12px;">当前阶段限制{{ curRow.teamNumLimit }}人参赛且此竞赛每个成员只能参加一个阶段赛项</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>
@ -385,7 +402,7 @@
</template>
<script>
import { mapMutations } from "vuex";
import { mapState, mapMutations } from "vuex";
import breadcrumb from '@/components/breadcrumb'
import util from '@/libs/util'
import Setting from "@/setting"
@ -394,6 +411,7 @@ export default {
name: 'matchdetail',
data() {
return {
token: util.local.get(Setting.tokenKey),
id: +this.$route.query.id,
end: '',
status: '',
@ -493,6 +511,11 @@ export default {
lastType: 1
};
},
computed: {
...mapState("user", [
'logView'
]),
},
components: {
breadcrumb
},
@ -514,6 +537,7 @@ export default {
'SET_SOURCE'
]),
getData() { //
clearInterval(this.timer)
this.$post(`${this.api.getCompetition}?competitionId=${this.id}`).then(({ competition }) => {
const list = competition.competitionAnnexList
//
@ -523,26 +547,35 @@ 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 reg = competition.competitionRegistration
//
if (reg) {
this.typeList.push({
id: '5',
name: '参赛信息'
})
this.getInfo()
//
if (competition.releaseType) {
const arches = []
//
competition.rule === 0 ?
arches.push({
stageId: '0',
stageName: '总分'
}) :
(this.curArch = competition.competitionStage[0].stageId + '')
arches.push(...competition.competitionStage)
arches.map(e => e.stageId = e.stageId + '')
this.arches = arches
//
if (reg && !this.typeList.find(e => e.id == 5)) {
this.typeList.push({
id: '5',
name: '参赛信息'
})
this.getInfo()
}
this.token() && this.getRank()
} else {
this.typeList = this.typeList.slice(0, 3)
}
this.getRank()
this.$refs.breadcrumb.update('全部赛事/' + competition.name)
this.handleStatus()
}).catch(err => {})
@ -582,10 +615,13 @@ export default {
endText = '阶段开始'
total = startTime - now
break
} else if (now >= startTime && now <= endTime && !e.count && e.method !== 2) { //
if (form.competitionRegistration) this.statusList[4] = '进入' + e.stageName
} else if (now >= startTime && now <= endTime && e.method !== 2) { //
if (form.competitionRegistration) { //
this.statusList[4] = e.count ? '已提交' : '进入' + e.stageName
curStage = e
}
endText = '阶段结束'
curStage = e
total = endTime - now
break
} else if (stages[i + 1] && now > endTime && now < new Date(stages[i + 1].startTime)) { //
@ -618,7 +654,7 @@ export default {
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) { //
} else if (this.status === 5) { //
clearInterval(this.timer)
}
}, 1000)
@ -639,6 +675,21 @@ 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))
// accountId
info.stages && info.stages.map(e => {
if (e.participantAccountIds && e.teamParticipantIds) {
const accountIds = e.participantAccountIds.split(',').map(n => +n)
const names = e.teamParticipantIds.split(',')
const participants = []
accountIds.map((n, i) => {
participants.push({
id: n,
name: names[i]
})
})
e.participants = participants
}
})
//
const now = Date.now()
this.form.competitionStage.map(e => {
@ -666,6 +717,7 @@ export default {
invitationCode,
whetherSignUp: 0
}).then(res => {
this.editing = false
this.getInfo()
showMsg && util.successMsg('保存成功')
}).catch(res => {})
@ -758,7 +810,7 @@ export default {
isOverallRanking: cur ? 0 : 1
}
data.stageIds = cur ? cur: ''
this.$post(this.api.frontOfficeCompetitionRanking, data).then(({ list }) => {
this.token && this.$post(this.api.frontOfficeCompetitionRanking, data).then(({ list }) => {
this.ranks = list
}).catch(res => {})
},
@ -844,7 +896,17 @@ export default {
}
}
if (!start) {
this.$confirm('确定要踢出该成员吗?', '提示', {
let include
for (const e of this.info.stages) {
if (e.participantAccountIds) {
const ids = e.participantAccountIds.split(',').map(n => +n)
if (ids.includes(row.accountId)) {
include = e.stageName
break
}
}
}
this.$confirm(include ? `该成员已被指定参加${include},踢出后需重新指定成员参加,是否确认踢出团队?` : '确定要踢出该成员吗?', '提示', {
type: 'warning'
}).then(() => {
this.$post(`${this.api.removeTheLine}?teamId=${this.info.teamId}&competitionId=${this.id}&accountId=${row.accountId}`).then(res => {
@ -854,6 +916,22 @@ export default {
}).catch(() => {})
}
},
//
removePar(e, stage) {
this.$confirm('确定要移除该成员吗?', '提示', {
type: 'warning'
}).then(() => {
this.$post(this.api.cancelParticipant, {
accountId: e.id,
competitionId: this.id,
stageId: stage.stageId,
teamId: this.info.teamId
}).then(res => {
util.successMsg('移除成功')
this.getInfo()
}).catch(res => {})
}).catch(() => {})
},
//
selectPar(row) {
const item = this.form.competitionStage.find(e => e.stageId == row.stageId)
@ -871,7 +949,7 @@ export default {
// accountId
stages.map(e => {
const id = e.participantAccountIds
id && ids.push(...id.split(',').map(n => +n))
if (e.stageId != row.stageId && id) ids.push(...id.split(',').map(n => +n))
})
ids = [...new Set(ids)]
teamDetail.map(e => {
@ -882,6 +960,7 @@ export default {
this.chooses = this.info.teamDetail
}
this.curRow = row
this.checkedMembers = []
this.chooseVisible = true
}
}
@ -891,7 +970,7 @@ export default {
const accountIds = this.checkedMembers
if (!accountIds.length) return util.errorMsg('请选择参赛成员!')
const limit = this.curRow.teamNumLimit //
if (accountIds.length > limit) return util.errorMsg(`请选择${limit}个以下参赛成员!`) //
if (limit && accountIds.length > limit) return util.errorMsg(`请选择${limit}个以下参赛成员!`) //
this.$post(this.api.stageSelectParticipants, {
accountIds,
competitionId: this.id,
@ -1018,6 +1097,7 @@ export default {
if (util.local.get(Setting.tokenKey)) {
const { competitionType } = form.completeCompetitionSetup
if (status == 4) { //
if (this.curStage.count) return //
if (form.competitionRegistration.isDisable === 1) return util.errorMsg('当前用户已被禁赛,如有疑问,请联系平台管理员。') //
//
if (competitionType) {
@ -1049,8 +1129,8 @@ export default {
type: 'success'
}).then(() => {
this.$post(`${this.api.cancelRegistration}?competitionId=${this.id}`).then(res => {
this.getData()
this.$message.success('取消报名成功')
this.getData()
}).catch(res => {})
}).catch(() => {})
}
@ -1165,6 +1245,9 @@ export default {
top: 64px;
margin-bottom: 20px;
background-color: #fff;
&.logView {
z-index: 0;
}
}
.info .meta{
padding: 16px 0;
@ -1177,6 +1260,7 @@ export default {
align-items: center;
}
.status {
max-width: 120px;
padding: 0 16px;
margin-left: 20px;
line-height: 34px;
@ -1185,6 +1269,7 @@ export default {
background-color: #52C41A;
border-radius: 4px;
cursor: pointer;
@include ellipsis();
&.wait {
background-color: #FAAD14;
}
@ -1449,6 +1534,9 @@ export default {
font-size: 16px;
color: #7a7a7a;
cursor: pointer;
&:hover {
color: #007EFF;
}
}
.plus {
margin-bottom: 10px;

@ -65,7 +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>
<el-button v-if="item.status === 1 || item.status === 2 || item.curStage" :class="['stage-label', {playing: item.curStage}]" type="primary">{{ item.status === 1 || 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>
@ -102,7 +102,7 @@
<div class="right">
<p class="status"
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}"
: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}" :title="item.status == 4 ? item.stageName : statusList[item.status]"
@click.stop="signup(item)">{{ item.status == 4 ? item.stageName : statusList[item.status] }}</p>
<p class="end-text" v-if="item.end">
距离{{ item.status == 4 ? item.endText : endList[item.status] }}还有
@ -390,8 +390,8 @@ export default {
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)
} else if (now >= startTime && now <= endTime) { //
if (item.whetherToSignUp === 0 && e.method !== 2) this.$set(item, 'stageName', e.count ? '已提交' : '进入' + e.stageName) //
this.$set(item, 'endText', '阶段结束')
curStage = e
total = endTime - now
@ -431,8 +431,8 @@ export default {
}
}, 1000)
this.timerList.push(timer)
})
console.log("🚀 ~ file: index.vue:434 ~ handleStatus ~ timerList", this.listData)
},
//
clearTimer() {
@ -570,6 +570,7 @@ export default {
if (util.local.get(Setting.tokenKey)) {
this.curItem = item
if (status == 4) { //
if (item.curStage.count) return //
if (item.isDisable === 1) return util.errorMsg('当前用户已被禁赛,如有疑问,请联系平台管理员。') //
//
if (competitionType) {
@ -811,6 +812,7 @@ export default {
flex: 1;
.status {
max-width: 120px;
padding: 0 23px;
line-height: 34px;
font-size: 14px;
@ -818,6 +820,7 @@ export default {
white-space: nowrap;
background-color: #52C41A;
border-radius: 4px;
@include ellipsis();
&.wait {
background-color: #FAAD14;
}
@ -886,8 +889,9 @@ export default {
top: -16px;
left: -16px;
border: 0;
background-color: rgb(101, 227, 181);
&.playing {
background-color: #f96d6d;
background-color: rgb(251, 174, 41);
}
}
.cover {

@ -399,6 +399,7 @@ export default {
util.cookies.set('curriculumName', escape(this.curriculumName))
util.cookies.set('systemId', id)
util.cookies.set('fromManager', '', -1)
util.cookies.set('competitionId', '', -1)
// 8pythoncookiesystemId
location.href = process.env.NODE_ENV === 'development' ?
`http://${location.hostname}:8085/#/` :

@ -56,6 +56,7 @@
<ul>
<li v-for="(item,index) in listData" :key="index" :id="item.id" @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>
@ -84,7 +85,7 @@
<div class="right">
<p class="status"
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}"
: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}" :title="item.status == 4 ? item.stageName : statusList[item.status]"
@click.stop="signup(item)">{{ item.status == 4 ? item.stageName : statusList[item.status] }}</p>
<p class="end-text" v-if="item.end">
距离{{ item.status == 4 ? item.endText : endList[item.status] }}还有
@ -281,6 +282,7 @@ export default {
const { form } = this
const scope = form.competitionScope
const data = {
eventType: 2,
pageNum: this.page,
pageSize: this.pageSize,
competitionScope: scope,
@ -290,7 +292,7 @@ export default {
sequence: form.sequence || null,
keyWord: this.keyword
}
this.$post(this.api.notLoggedInBeforeStudentEvents, data).then(({ data }) => {
this.$post(this.api[util.local.get(Setting.tokenKey) ? 'competitionAfterLogin' : 'notLoggedInBeforeStudentEvents'], data).then(({ data }) => {
const { records } = data
const { token } = this
records.forEach((n, k) => {
@ -315,7 +317,6 @@ export default {
const id = this.toMatch
if (id) {
this.$nextTick(() => {
// document.getElementById(id).scrollIntoView()
this.SET_SOURCE('')
const item = records.find(e => e.id === id)
item && this.toDetail(item)
@ -343,7 +344,7 @@ export default {
total = signUpStartTime - now
} else if (now > signUpStartTime && now < signUpEndTime) { //
// whetherToSignUp 01
status = 2 // 12
status = item.whetherToSignUp === 0 ? 1 : 2 // 12
total = signUpEndTime - now
} else if (now > signUpEndTime && now < playStartTime) { // ,
status = 3
@ -362,8 +363,8 @@ export default {
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)
} else if (now >= startTime && now <= endTime) { //
if ((item.whetherToSignUp === 0 || !util.local.get(Setting.tokenKey)) && e.method !== 2) this.$set(item, 'stageName', e.count ? '已提交' : '进入' + e.stageName) //
this.$set(item, 'endText', '阶段结束')
curStage = e
total = endTime - now
@ -452,7 +453,7 @@ export default {
this.initData()
},
toDetail(item) {
this.$router.push(`/touristMatch/details?id=${item.id}&status=${item.status}${item.end ? '&end=' + item.end : ''}`);
this.$router.push(`/touristMatch/details?id=${item.id}`);
},
handleCurrentChange(val) {
this.clearTimer()
@ -763,12 +764,15 @@ export default {
flex: 1;
.status {
max-width: 120px;
padding: 0 23px;
line-height: 34px;
font-size: 14px;
color: #fff;
white-space: nowrap;
background-color: #52C41A;
border-radius: 4px;
@include ellipsis();
&.wait {
background-color: #FAAD14;
}
@ -830,7 +834,18 @@ export default {
}
}
.left {
position: relative;
display: inline-flex;
.stage-label {
position: absolute;
top: -16px;
left: -16px;
border: 0;
background-color: rgb(101, 227, 181);
&.playing {
background-color: rgb(251, 174, 41);
}
}
.cover {
img {
width: 220px;

Loading…
Cancel
Save