赛事修复

alioss
yujialong 2 years ago
parent 52bf266a67
commit bdb3ffba43
  1. 2
      src/api/index.js
  2. 463
      src/pages/match/details/index.vue
  3. 44
      src/pages/match/list/index.vue
  4. 7
      src/pages/screen/index.vue
  5. 30
      src/pages/touristMatch/list/index.vue
  6. 2
      src/setting.js
  7. 2
      src/store/modules/match.js

@ -99,6 +99,8 @@ export default {
allowedParticipateCompetition: `competition/competition/management/allowedParticipateCompetition`, allowedParticipateCompetition: `competition/competition/management/allowedParticipateCompetition`,
stageSelectParticipants: `competition/competition/teamParticipant/stageSelectParticipants`, stageSelectParticipants: `competition/competition/teamParticipant/stageSelectParticipants`,
getCustomerBySchoolId: `nakadai/nakadai/customer/getCustomerBySchoolId`, getCustomerBySchoolId: `nakadai/nakadai/customer/getCustomerBySchoolId`,
isParticipant: `competition/competition/management/isParticipant`,
editCompetitionTeam: `competition/competition/team/editCompetitionTeam`,
frontDeskOverallRanking: `${host1}competition/competition/rank/frontDeskOverallRanking`, frontDeskOverallRanking: `${host1}competition/competition/rank/frontDeskOverallRanking`,
frontOfficeCompetitionRanking: `${host1}competition/competition/rank/frontOfficeCompetitionRanking`, frontOfficeCompetitionRanking: `${host1}competition/competition/rank/frontOfficeCompetitionRanking`,
stageGradeManagementList: `${host1}competition/competition/performance/stageGradeManagementList`, stageGradeManagementList: `${host1}competition/competition/performance/stageGradeManagementList`,

@ -22,75 +22,83 @@
<h6 class="title">{{ form.name }}</h6> <h6 class="title">{{ form.name }}</h6>
<div class="meta">最近编辑时间{{ form.updateTime }}</div> <div class="meta">最近编辑时间{{ form.updateTime }}</div>
</div> </div>
<div v-show="curType != 4 && curType != 5">
<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">
<h6 class="p-title">附件下载</h6>
<ul class="files">
<li v-for="(item, i) in form.contestAnnexList" :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>
</li>
</ul>
</template>
<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> <div class="l-title"><img src="@/assets/img/label.png" alt=""> 赛程规则与内容</div>
<template v-if="form.contestAnnexList"> <h6 class="rule-title">{{ form.competitionStage.length }}个竞赛阶段同一个团队每个成员只能参加一个阶段赛项</h6>
<h6 class="p-title">附件下载</h6> <div v-for="(rule, i) in form.competitionStage" :key="i" class="rule">
<ul class="files"> <p style="font-size: 16px;color: #333;">{{ rule.stageName }}</p>
<li v-for="(item, i) in form.contestAnnexList" :key="i"> <p>比赛时间{{ rule.startTime && rule.startTime + ' ~ ' + rule.endTime }}</p>
<el-link v-if="item.canPreview" class="m-r-10" type="primary" @click="preview(item)">{{ item.fileName }}</el-link> <p>比赛方式{{ methods.find(e => e.id == rule.method) && methods.find(e => e.id == rule.method).name }}</p>
<span v-else class="fileName">{{ item.fileName }}</span> <p v-if="!rule.method">课程系统{{ rule.systemName }}</p>
<el-link type="primary" :underline="false" @click="download(item)">下载</el-link> <template v-if="rule.method === 2">
<p>比赛内容</p>
<div v-html="form.description"></div>
<p class="m-t-10">评分规则专家打分</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>
<!-- 进展 -->
<div class="l-title" id="part2"><img src="@/assets/img/label.png" alt=""> 竞赛进展</div>
<ul class="progress" v-if="progress.length">
<li v-for="(item,index) in progress" :key="index" :class="item.status == 0 ? 'not' : (item.status == 1 ? 'ing' : 'done')">
<i class="dot"></i>
<p class="name">{{item.title}}</p>
<p class="desc">{{item.description}}</p>
</li>
<img class="rocket" src="@/assets/img/rocket.png" alt="">
</ul>
<template v-else>
<div class="empty">
<div>
<img src="@/assets/img/none.png" alt="">
<p>暂无数据</p>
</div>
</div>
</template>
<!-- 公告 -->
<div class="l-title" id="part3"><img src="@/assets/img/label.png" alt=""> 通知公告</div>
<ul class="notice-list" v-if="notices.length">
<li v-for="(item, i) in notices" :key="i" @click="toNotice(item)">
<h6>{{ item.announcementTitle }}</h6>
<p class="meta">{{ item.updateTime }}</p>
<div class="des" v-html="item.announcementText"></div>
</li> </li>
</ul> </ul>
</template> <template v-else>
<div class="empty">
<div>
<div class="l-title" id="part1"><img src="@/assets/img/label.png" alt=""> 赛程规则与内容</div> <img src="@/assets/img/none.png" alt="">
<h6 class="rule-title">共3个竞赛阶段同一个团队每个成员只能参加一个阶段赛项</h6> <p>暂无通知公告</p>
<div v-for="(rule, i) in form.competitionStage" :key="i" class="rule"> </div>
<p>{{ rule.stageName }}</p> </div>
<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> </template>
<p>阶段比赛结束后{{ rule.resultAnnouncementTime }}小时公布阶段比赛成绩</p>
</div> </div>
<!-- 进展 -->
<div class="l-title" id="part2"><img src="@/assets/img/label.png" alt=""> 竞赛进展</div>
<ul class="progress" v-if="progress.length">
<li v-for="(item,index) in progress" :key="index" :class="item.status == 0 ? 'not' : (item.status == 1 ? 'ing' : 'done')">
<i class="dot"></i>
<p class="name">{{item.title}}</p>
<p class="desc">{{item.description}}</p>
</li>
<img class="rocket" src="@/assets/img/rocket.png" alt="">
</ul>
<template v-else>
<div class="empty">
<div>
<img src="@/assets/img/none.png" alt="">
<p>暂无数据</p>
</div>
</div>
</template>
<!-- 公告 -->
<div class="l-title" id="part3"><img src="@/assets/img/label.png" alt=""> 通知公告</div>
<ul class="notice-list" v-if="notices.length">
<li v-for="(item, i) in notices" :key="i" @click="toNotice(item)">
<h6>{{ item.announcementTitle }}</h6>
<p class="meta">{{ item.updateTime }}</p>
<div class="des" v-html="item.announcementText"></div>
</li>
</ul>
<template v-else>
<div class="empty">
<div>
<img src="@/assets/img/none.png" alt="">
<p>暂无通知公告</p>
</div>
</div>
</template>
<!-- 竞赛排名 --> <!-- 竞赛排名 -->
<template v-if="form.competitionRegistration && form.competitionRegistration.teamId"> <template v-if="curType == 4 && form.competitionRegistration && form.competitionRegistration.teamId">
<div class="l-title" id="part4"><img src="@/assets/img/label.png" alt=""> 竞赛排名</div> <div class="l-title"><img src="@/assets/img/label.png" alt=""> 竞赛排名</div>
<el-tabs v-model="curArch" @tab-click="getRank"> <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-tab-pane v-for="(item, index) in arches" :key="index" :label="item.stageName + '排名'" :name="item.stageId"></el-tab-pane>
</el-tabs> </el-tabs>
@ -108,141 +116,142 @@
</el-table> </el-table>
</template> </template>
<div class="l-title m-t-20" id="part4"><img src="@/assets/img/label.png" alt=""> 参赛信息</div> <template v-if="curType == 5">
<table class="table"> <div class="l-title m-t-20"><img src="@/assets/img/label.png" alt=""> 参赛信息</div>
<template v-if="!form.completeCompetitionSetup.competitionType || info.team.captain"> <table class="table">
<tr> <template v-if="!form.completeCompetitionSetup.competitionType || info.team.captain">
<th width="150">姓名</th> <tr>
<td>{{ info.person.userName }}</td> <th width="150">姓名</th>
</tr> <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> <tr>
<th>队长</th> <th>学号</th>
<td>{{ info.caption.userName }}{{ info.caption.schoolName && ',' + info.caption.schoolName }}{{ info.caption.workNumber && ',' + info.caption.workNumber }}</td> <td>{{ info.person.workNumber }}</td>
</tr> </tr>
<tr> <tr>
<th>团队成员</th> <th>学校</th>
<td>{{ info.person.schoolName }}</td>
</tr>
</template>
<template v-if="form.completeCompetitionSetup.competitionType">
<tr>
<th width="150">团队名称</th>
<td> <td>
<el-tag v-for="(item, i) in info.teamDetail" :key="i" style="margin-right: 5px">{{ item.userName }}</el-tag> <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> </td>
</tr> </tr>
</template> <template v-if="info.team.captain">
</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> <tr>
<th width="80">序号</th> <th>队长</th>
<th>赛项阶段名称</th> <td>{{ info.caption.userName }}{{ info.caption.schoolName && ',' + info.caption.schoolName }}{{ info.caption.workNumber && ',' + info.caption.workNumber }}</td>
<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> </tr>
<template v-if="info.stages.length"> <tr>
<tr v-for="(item, i) in info.stages" :key="i"> <th>团队成员</th>
<td>{{ i + 1 }}</td> <td>
<td>{{ item.stageName }}</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"> <template v-if="form.completeCompetitionSetup.competitionType">
<td>{{ item.peopleLimit }}</td> <th width="110">参赛人数限制</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.teamNumLimit || 0 }}</td>
<td>
<span class="m-r-5">{{ item.teamParticipantIds }}</span>
<el-button type="danger" size="mini" @click="selectPar(item)">修改</el-button>
</td>
<td v-if="info.team.captain === 0 && form.rule === 0 && !i" :rowspan="info.stages.length">{{ info.totalScore }}</td>
</template>
<td> <td>
<el-button :disabled="!editing" type="danger" size="mini" @click="selectPar(item)">修改</el-button> <span v-if="item.score" class="m-r-10">分数{{item.score}}</span>
<span class="m-l-5">{{ item.teamParticipantIds }}</span> <el-button type="text" :disabled="item.resultsDetails === 1" @click="show(item)">查看成绩详情</el-button>
</td> </td>
<td v-if="info.team.captain === 0 && form.rule === 0"></td> </tr>
</template> </template>
<td> <tr v-else>
<span v-if="item.score" class="m-r-10">分数{{item.score}}</span> <td colspan="6">暂无数据</td>
<el-button type="text" :disabled="item.resultsDetails === 1" @click="show(item)">查看成绩详情</el-button>
</td>
</tr> </tr>
</template> </table>
<tr v-else> <el-alert
<td colspan="6">暂无数据</td> v-if="form.completeCompetitionSetup.competitionType && info.team.captain === 0"
</tr> style="margin-top: 10px;"
</table> title="注:请团长(团队创建人)设置各阶段参赛成员,只有被选择的允许参赛成员可进入对应阶段比赛,每个团队成员只能参加一个赛项阶段!"
<el-alert type="warning"
v-if="form.completeCompetitionSetup.competitionType && info.team.captain === 0" show-icon>
style="margin-top: 10px;" </el-alert>
title="注:请团长(团队创建人)设置各阶段参赛成员,只有被选择的允许参赛成员可进入对应阶段比赛,每个团队成员只能参加一个赛项阶段!" </td>
type="warning" </tr>
show-icon> </table>
</el-alert> <div v-if="form.completeCompetitionSetup.competitionType && info.team.captain === 0" class="m-t-20 text-center">
</td> <el-button type="primary" @click="edit">{{ editing ? '保存' : '编辑' }}</el-button>
</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> </div>
<el-table :data="info.teamDetail" stripe header-align="center">
<el-table-column prop="userName" label="成员姓名" min-width="100" align="center"></el-table-column> <template v-if="form.completeCompetitionSetup.competitionType && info.team.captain === 0">
<el-table-column prop="schoolName" label="学校" min-width="100" align="center"></el-table-column> <div class="l-title m-t-20">团队成员</div>
<el-table-column prop="workNumber" label="学号" min-width="100" align="center"></el-table-column> <div class="flex-center">
<el-table-column prop="createTime" label="加入时间" width="180" align="center"></el-table-column> <p>队长{{ info.caption.userName }}</p>
<el-table-column label="操作" align="center" width="160"> <el-button type="primary" :disabled="status > 3" @click="transfer">转让队长</el-button>
<template slot-scope="scope"> </div>
<el-button v-if="scope.row.captain" type="text" :disabled="status > 3" @click="removeLine(scope.row)">踢出团队</el-button> <el-table :data="info.teamDetail" stripe header-align="center">
</template> <el-table-column prop="userName" label="成员姓名" min-width="100" align="center"></el-table-column>
</el-table-column> <el-table-column prop="schoolName" label="学校" min-width="100" align="center"></el-table-column>
</el-table> <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>
</template> </template>
</div> </div>
</div> </div>
</div> </div>
<el-dialog title="报名" :visible.sync="enterVisible" :close-on-click-modal="false" width="300px" @close="enterClose"> <el-dialog title="报名" :visible.sync="enterVisible" :close-on-click-modal="false" width="300px" @close="enterClose">
<el-form class="dia-form"> <el-form class="dia-form">
<p style="margin-bottom: 5px">请选择要加入的团队</p> <p style="margin-bottom: 5px">请选择要加入的团队</p>
@ -283,7 +292,6 @@
<el-button size="small" @click="teamVisible = false">取消</el-button> <el-button size="small" @click="teamVisible = false">取消</el-button>
</span> </span>
</el-dialog> </el-dialog>
<el-dialog title="选择参赛成员" :visible.sync="transferVisible" :close-on-click-modal="false" width="400px"> <el-dialog title="选择参赛成员" :visible.sync="transferVisible" :close-on-click-modal="false" width="400px">
<template v-for="(item, i) in info.teamDetail"> <template v-for="(item, i) in info.teamDetail">
@ -318,15 +326,20 @@
<th width="100">分数</th> <th width="100">分数</th>
<th width="100">得分详情</th> <th width="100">得分详情</th>
</tr> </tr>
<tr v-for="(item, i) in members" :key="i"> <template v-if="members.length">
<td>{{ i + 1 }}</td> <tr v-for="(item, i) in members" :key="i">
<td>{{ item.userName }}</td> <td>{{ i + 1 }}</td>
<td>{{ item.schoolName }}</td> <td>{{ item.userName }}</td>
<td>{{ item.timeSum }}min</td> <td>{{ item.schoolName }}</td>
<td>{{ item.score }}</td> <td>{{ item.timeSum }}min</td>
<td> <td>{{ item.score }}</td>
<el-button type="text" @click="toReport(item)">查看</el-button> <td>
</td> <el-button type="text" @click="toReport(item)">查看</el-button>
</td>
</tr>
</template>
<tr v-else>
<td colspan="6">暂无数据</td>
</tr> </tr>
</table> </table>
<span slot="footer" class="dialog-footer"> <span slot="footer" class="dialog-footer">
@ -362,6 +375,7 @@ export default {
signUpEndTime: '', signUpEndTime: '',
playStartTime: '', playStartTime: '',
playEndTime: '', playEndTime: '',
competitionStage: [],
completeCompetitionSetup: {}, completeCompetitionSetup: {},
competitionRegistration: {} competitionRegistration: {}
}, },
@ -378,6 +392,14 @@ export default {
{ {
id: '3', id: '3',
name: '通知公告' name: '通知公告'
},
{
id: '4',
name: '竞赛排名'
},
{
id: '5',
name: '参赛信息'
} }
], ],
progress: [], progress: [],
@ -542,6 +564,7 @@ export default {
this.form = competition this.form = competition
const type = competition.completeCompetitionSetup.competitionType const type = competition.completeCompetitionSetup.competitionType
const reg = competition.competitionRegistration const reg = competition.competitionRegistration
reg || this.typeList.pop()
if (!type || (type && reg)) this.getInfo() if (!type || (type && reg)) this.getInfo()
reg && reg.teamId && this.getRank() reg && reg.teamId && this.getRank()
this.$refs.breadcrumb.update('全部赛事/' + competition.name) this.$refs.breadcrumb.update('全部赛事/' + competition.name)
@ -596,7 +619,7 @@ export default {
getInfo() { getInfo() {
this.$post(`${this.api.entryInformation}?competitionId=${this.id}`).then(res => { this.$post(`${this.api.entryInformation}?competitionId=${this.id}`).then(res => {
const info = res.entryInformation const info = res.entryInformation
if (!info.teamInstructors.length) info.teamInstructors.push(this.originIns) if (!info.teamInstructors.length) info.teamInstructors.push(JSON.parse(JSON.stringify(this.originIns)))
if (info.personalDetail) { if (info.personalDetail) {
info.team = {} info.team = {}
info.teamDetail = [] info.teamDetail = []
@ -613,7 +636,7 @@ export default {
edit() { edit() {
if (this.editing) { if (this.editing) {
const { teamId, teamName, invitationCode } = this.info.team const { teamId, teamName, invitationCode } = this.info.team
this.$post(this.api.addCompetitionTeam, { this.$post(this.api.editCompetitionTeam, {
competitionId: this.id, competitionId: this.id,
teamId, teamId,
teamName, teamName,
@ -656,7 +679,13 @@ export default {
}, },
// tab // tab
typeChange() { typeChange() {
document.querySelector(`#part${this.curType}`).scrollIntoView() //
const type = +this.curType
if (type > 3) {
this.editing = false
} else {
document.querySelector(`#part${type}`).scrollIntoView()
}
}, },
// //
toNotice(item) { toNotice(item) {
@ -694,21 +723,23 @@ export default {
}).then(() => { }).then(() => {
this.$post(`${this.api.deleteAnAdvisor}?id=${row.id}`).then(res => { this.$post(`${this.api.deleteAnAdvisor}?id=${row.id}`).then(res => {
util.successMsg('删除成功') util.successMsg('删除成功')
// this.getClassification() this.getInfo()
}).catch(res => {}) }).catch(res => {})
}).catch(() => {}) }).catch(() => {})
} else { } else {
this.classifications.splice(i, 1) this.info.teamInstructors.splice(i, 1)
} }
}, },
// //
addAdvisor() { addAdvisor() {
if (this.info.teamInstructors.length > 5) if (this.info.teamInstructors.length > 4) return util.errorMsg('指导老师仅限添加5个!')
this.info.teamInstructors.push(JSON.parse(JSON.stringify(this.originIns))) this.info.teamInstructors.push(JSON.parse(JSON.stringify(this.originIns)))
}, },
// //
submitAdvisor(row) { submitAdvisor(row) {
if (!row.name) return util.errorMsg('请输入姓名') if (!row.name) return util.errorMsg('请输入姓名')
const { phone } = row
if (phone && !/^1[3456789]\d{9}$/.test(phone)) return util.errorMsg('请输入正确手机号格式')
this.$post(this.api.addAnAdvisor, { this.$post(this.api.addAnAdvisor, {
name: row.name, name: row.name,
competitionId: this.id, competitionId: this.id,
@ -792,9 +823,13 @@ export default {
this.members = [] this.members = []
} }
} else if (row.reportId) { // reportId } else if (row.reportId) { // reportId
this.$router.push(`/record/show?reportId=${row.reportId}`) this.toReport(row)
} }
}, },
//
toReport(row) {
this.$router.push(`/record/show?reportId=${row.reportId}`)
},
// //
enterSubmit() { enterSubmit() {
@ -858,30 +893,45 @@ export default {
} }
}, },
//
getAllow() {
//
if (this.form.rule === 1) {
this.$post(this.api.allowedParticipateCompetition, {
competitionId: this.id,
number: this.curStage.number,
stageId: this.curStage.stageId,
teamId: this.form.competitionRegistration.teamId,
}).then(res => {
this.toSub()
}).catch(res => {})
} else {
this.toSub()
}
},
// //
signup(){ signup(){
const { status, form } = this const { status, form } = this
// //
if (util.local.get(Setting.tokenKey)) { if (util.local.get(Setting.tokenKey)) {
const { competitionType } = form.completeCompetitionSetup
if (status == 4) { // if (status == 4) { //
if (form.isDisable === 1) return util.errorMsg('当前用户已被禁赛,如有疑问,请联系平台管理员。') // if (form.competitionRegistration.isDisable === 1) return util.errorMsg('当前用户已被禁赛,如有疑问,请联系平台管理员。') //
// //
if (form.rule === 1) { if (competitionType) {
this.$post(this.api.allowedParticipateCompetition, { this.$post(this.api.isParticipant, {
competitionId: this.id, competitionId: this.id,
number: this.curStage.number,
stageId: this.curStage.stageId, stageId: this.curStage.stageId,
teamId: form.competitionRegistration.teamId, teamId: form.competitionRegistration.teamId,
}).then(res => { }).then(res => {
// this.toSub() this.getAllow()
}).catch(res => {}) }).catch(res => {})
} else { } else {
this.toSub() this.getAllow()
} }
this.toSub()
} else if (status == 2) { // } else if (status == 2) { //
// //
if (form.completeCompetitionSetup.competitionType) { if (competitionType) {
this.enterVisible = true this.enterVisible = true
} else { // } else { //
this.$post(this.api.addCompetitionRegistration, { this.$post(this.api.addCompetitionRegistration, {
@ -986,6 +1036,7 @@ export default {
p { p {
font-size: 14px; font-size: 14px;
line-height: 30px; line-height: 30px;
color: #6e6e6e;
} }
} }
.content{ .content{
@ -1003,6 +1054,7 @@ export default {
.tool { .tool {
position: sticky; position: sticky;
top: 64px; top: 64px;
margin-bottom: 20px;
background-color: #fff; background-color: #fff;
} }
.info .meta{ .info .meta{
@ -1293,6 +1345,7 @@ export default {
.line { .line {
display: flex; display: flex;
align-items: center; align-items: center;
margin-bottom: 10px;
.el-input { .el-input {
margin-right: 15px; margin-right: 15px;
} }

@ -190,14 +190,14 @@ export default {
statusList: ["等待报名", "取消报名", "立即报名", "报名截止", "进入初赛", "已结束"], statusList: ["等待报名", "取消报名", "立即报名", "报名截止", "进入初赛", "已结束"],
endList: ["报名开始", "报名截止", "报名截止", "竞赛开始", "竞赛结束", ""], endList: ["报名开始", "报名截止", "报名截止", "竞赛开始", "竞赛结束", ""],
typeList: [ typeList: [
{
id: 1,
name: "本校赛事"
},
{ {
id: 2, id: 2,
name: "赛事广场" name: "赛事广场"
}, },
{
id: 1,
name: "本校赛事"
},
{ {
id: 3, id: 3,
name: "已报名" name: "已报名"
@ -210,7 +210,7 @@ export default {
cityId: '', cityId: '',
sequence: 2, // (1: 2.) sequence: 2, // (1: 2.)
competitionScope: 3, // (0: 1: 2.) competitionScope: 3, // (0: 1: 2.)
eventType: 1 // (1./2.广/3.) eventType: 2 // (1./2.广/3.)
}, },
squareScopes: [ squareScopes: [
{ {
@ -376,7 +376,7 @@ export default {
}, },
mounted() { mounted() {
this.form.eventType = this.eventType this.form.eventType = this.eventType
this.SET_TYPE(1) this.SET_TYPE(2)
this.getProvince() this.getProvince()
this.getData() this.getData()
this.$once('hook:beforeDestroy', function() { this.$once('hook:beforeDestroy', function() {
@ -578,30 +578,46 @@ export default {
util.successMsg('报名成功!') util.successMsg('报名成功!')
}).catch(res => {}) }).catch(res => {})
}, },
//
getAllow(item) {
//
if (item.rule === 1) {
this.$post(this.api.allowedParticipateCompetition, {
competitionId: item.id,
number: item.curStage.number,
stageId: item.curStage.stageId,
teamId: item.teamId,
}).then(res => {
this.toSub()
}).catch(res => {})
} else {
this.toSub()
}
},
// //
signup(item) { signup(item) {
const { status, id, rule } = item const { status, id } = item
const { competitionType } = item.setup
// //
if (util.local.get(Setting.tokenKey)) { if (util.local.get(Setting.tokenKey)) {
this.curItem = item this.curItem = item
if (status == 4) { // if (status == 4) { //
if (item.isDisable === 1) return util.errorMsg('当前用户已被禁赛,如有疑问,请联系平台管理员。') // if (item.isDisable === 1) return util.errorMsg('当前用户已被禁赛,如有疑问,请联系平台管理员。') //
// //
if (rule === 1) { if (competitionType) {
this.$post(this.api.allowedParticipateCompetition, { this.$post(this.api.isParticipant, {
competitionId: id, competitionId: id,
number: item.curStage.number,
stageId: item.curStage.stageId, stageId: item.curStage.stageId,
teamId: item.teamId, teamId: item.teamId,
}).then(res => { }).then(res => {
this.toSub() this.getAllow(item)
}).catch(res => {}) }).catch(res => {})
} else { } else {
this.toSub() this.getAllow(item)
} }
} else if (status == 2) { // } else if (status == 2) { //
// //
if (item.setup.competitionType) { if (competitionType) {
this.getTeam() this.getTeam()
this.enterForm = { this.enterForm = {
competitionId: id, competitionId: id,

@ -372,13 +372,14 @@ export default {
}).catch(res => {}) }).catch(res => {})
// //
this.$post(this.api.academicLeadersRanking).then(({ data }) => { this.$post(`${this.api.academicLeadersRanking}?pageNum=1&pageSize=20`).then(({ data }) => {
const list = data.records
// //
data.sort((a, b) => { list.sort((a, b) => {
if (a.avgScore == b.avgScore) return b.practiceNumber - a.practiceNumber if (a.avgScore == b.avgScore) return b.practiceNumber - a.practiceNumber
return b.avgScore - a.avgScore return b.avgScore - a.avgScore
}) })
this.achs = data this.achs = list
}).catch(res => {}) }).catch(res => {})
this.scrollTable() this.scrollTable()
}, },

@ -543,26 +543,42 @@ export default {
util.successMsg('报名成功!') util.successMsg('报名成功!')
}).catch(res => {}) }).catch(res => {})
}, },
//
getAllow(item) {
//
if (item.rule === 1) {
this.$post(this.api.allowedParticipateCompetition, {
competitionId: item.id,
number: item.curStage.number,
stageId: item.curStage.stageId,
teamId: item.teamId,
}).then(res => {
this.toSub()
}).catch(res => {})
} else {
this.toSub()
}
},
// //
signup(item) { signup(item) {
const { status, id, rule } = item const { status, id } = item
const { competitionType } = item.setup
// //
if (util.local.get(Setting.tokenKey)) { if (util.local.get(Setting.tokenKey)) {
this.curItem = item this.curItem = item
if (status == 4) { // if (status == 4) { //
if (item.isDisable === 1) return util.errorMsg('当前用户已被禁赛,如有疑问,请联系平台管理员。') // if (item.isDisable === 1) return util.errorMsg('当前用户已被禁赛,如有疑问,请联系平台管理员。') //
// //
if (rule === 1) { if (competitionType) {
this.$post(this.api.allowedParticipateCompetition, { this.$post(this.api.isParticipant, {
competitionId: id, competitionId: id,
number: item.curStage.number,
stageId: item.curStage.stageId, stageId: item.curStage.stageId,
teamId: item.teamId, teamId: item.teamId,
}).then(res => { }).then(res => {
this.toSub() this.getAllow(item)
}).catch(res => {}) }).catch(res => {})
} else { } else {
this.toSub() this.getAllow(item)
} }
} else if (status == 2) { // } else if (status == 2) { //
// //

@ -44,7 +44,7 @@ const Setting = {
apiBaseURL: host, // 接口请求地址 apiBaseURL: host, // 接口请求地址
uploadURL, // 阿里云oss域名 uploadURL, // 阿里云oss域名
systemPath, // 子系统地址前缀 systemPath, // 子系统地址前缀
autoLogoutTime: 3600000, // 长时间未操作,自动退出登录时间 autoLogoutTime: 3600000000, // 长时间未操作,自动退出登录时间
modalDuration: 3, // 接口请求返回错误时,弹窗的持续时间,单位:秒 modalDuration: 3, // 接口请求返回错误时,弹窗的持续时间,单位:秒
errorModalType: "Message", // 接口请求返回错误时,弹窗的类型,可选值为 Message 或 Notice errorModalType: "Message", // 接口请求返回错误时,弹窗的类型,可选值为 Message 或 Notice
cookiesExpires: 1, // Cookies 默认保存时间,单位:天 cookiesExpires: 1, // Cookies 默认保存时间,单位:天

@ -5,7 +5,7 @@ export default {
namespaced: true, namespaced: true,
state: { state: {
toMatch: '', toMatch: '',
eventType: 1 // 赛事类型 eventType: 2 // 赛事类型
}, },
mutations: { mutations: {
SET_SOURCE: (state, id) => { SET_SOURCE: (state, id) => {

Loading…
Cancel
Save