You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1482 lines
61 KiB

4 years ago
<template>
<div class="wrap index">
3 years ago
<div class="banner" :style="{backgroundImage: 'url(' + (form.carouselUrl || 'https://huoran.oss-cn-shenzhen.aliyuncs.com/20220613/png/1536269450851409920.png') + ')'}"></div>
2 years ago
<div class="center-con">
3 years ago
<div class="center-wrap">
<breadcrumb ref="breadcrumb" :data="'全部赛事/' + form.name"></breadcrumb>
<div class="content">
2 years ago
<div class="tool flex-between">
3 years ago
<el-tabs v-model="curType" @tab-click="typeChange">
<el-tab-pane v-for="(item, index) in typeList" :key="index" :label="item.name" :name="item.id"></el-tab-pane>
</el-tabs>
<div class="action">
2 years ago
<p class="end-text" v-if="end">
2 years ago
距离{{ endList[status] }}还有
2 years ago
<em>{{ end }}</em>
3 years ago
</p>
2 years ago
<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>
3 years ago
</div>
</div>
<div class="info">
<h6 class="title">{{ form.name }}</h6>
<div class="meta">最近编辑时间{{ form.updateTime }}</div>
</div>
2 years ago
2 years ago
<div v-show="curType < 4">
2 years ago
<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>
3 years ago
2 years ago
<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>
2 years ago
<p v-if="rule.onlineButton">线上地点{{ rule.onlineAddress }}</p>
<p v-if="rule.offlineButton">线下地点{{ rule.offlineAddress }}</p>
2 years ago
<template v-if="rule.method === 2">
2 years ago
<p>线下地点{{ rule.offlineAddress }}</p>
<p>比赛内容{{ rule.contentDescription }}</p>
2 years ago
<p>评分规则{{ rule.scoreRule }}</p>
2 years ago
</template>
<template v-if="form.completeCompetitionSetup.competitionType">
2 years ago
<p>团队参赛人数限制{{ rule.teamNumLimit || '不限制' }}</p>
2 years ago
<p>团队成绩计算方式{{ teamCalculationMethods.find(e => e.id == rule.teamCalculationMethod) && teamCalculationMethods.find(e => e.id == rule.teamCalculationMethod).name }}</p>
</template>
<p>阶段比赛结束后{{ rule.resultAnnouncementTime }}小时公布阶段比赛成绩</p>
2 years ago
<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>
2 years ago
</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>
3 years ago
</li>
</ul>
2 years ago
<template v-else>
<div class="empty">
<div>
<img src="@/assets/img/none.png" alt="">
<p>暂无通知公告</p>
</div>
</div>
2 years ago
</template>
</div>
<!-- 竞赛排名 -->
2 years ago
<template v-if="curType == 4 && form.competitionRegistration && form.competitionRegistration.teamId">
<div class="l-title"><img src="@/assets/img/label.png" alt=""> 竞赛排名</div>
2 years ago
<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>
2 years ago
<template v-if="curType == 5">
<div class="l-title m-t-20"><img src="@/assets/img/label.png" alt=""> 参赛信息</div>
2 years ago
<table v-if="form.completeCompetitionSetup.competitionType && info.team.captain === 0" class="table m-b-20">
<tr>
<th width="150">团队名称</th>
<td>
<el-input :disabled="!editing" v-model="info.team.teamName"></el-input>
</td>
<th width="150">团队邀请码</th>
<td>
<el-input :disabled="!editing" v-model="info.team.invitationCode"></el-input>
</td>
</tr>
</table>
<div v-if="form.completeCompetitionSetup.competitionType && info.team.captain === 0 && status < 4" class="m-b-20 text-center">
<el-button type="primary" @click="edit(1)">{{ editing ? '保存' : '编辑' }}</el-button>
</div>
2 years ago
<table class="table">
<template v-if="!form.completeCompetitionSetup.competitionType || info.team.captain">
<tr>
<th width="150">姓名</th>
<td>{{ info.person.userName }}</td>
</tr>
2 years ago
<tr>
2 years ago
<th>学号</th>
<td>{{ info.person.workNumber }}</td>
2 years ago
</tr>
<tr>
2 years ago
<th>学校</th>
<td>{{ info.person.schoolName }}</td>
</tr>
</template>
<template v-if="form.completeCompetitionSetup.competitionType">
2 years ago
<tr v-if="info.team.captain">
2 years ago
<th width="150">团队名称</th>
2 years ago
<td>
2 years ago
<span>{{ info.team.teamName }}</span>
2 years ago
</td>
</tr>
2 years ago
<template v-if="info.team.captain">
2 years ago
<tr>
2 years ago
<th>队长</th>
<td>{{ info.caption.userName }}{{ info.caption.schoolName && ',' + info.caption.schoolName }}{{ info.caption.workNumber && ',' + info.caption.workNumber }}</td>
2 years ago
</tr>
2 years ago
<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>
2 years ago
<tr v-if="info.team.captain">
<th>团队邀请码</th>
<td>
<span>{{ info.team.invitationCode }}</span>
</td>
</tr>
2 years ago
</template>
</template>
<tr>
2 years ago
<th width="130">指导老师</th>
2 years ago
<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">
2 years ago
<el-input placeholder="请输入姓名" v-model="item.name" clearable size="mini" :disabled="!item.edit"></el-input>
<el-input placeholder="请输入职务" maxlength="10" v-model="item.position" clearable size="mini" :disabled="!item.edit"></el-input>
<el-input placeholder="请输入手机号" maxlength="11" v-model="item.phone" clearable size="mini" :disabled="!item.edit"></el-input>
<template v-if="status < 5">
<i v-if="item.edit" class="el-icon-check icon" @click="submitAdvisor(item)"></i>
<i v-else class="el-icon-edit icon" @click="editAdvisor(item)"></i>
<i class="el-icon-delete icon" @click="delAdvisor(item, i)"></i>
</template>
2 years ago
</div>
</td>
<td v-else>
2 years ago
<table class="table tc">
<tr>
<th width="60">姓名</th>
<th width="100">职务</th>
<th width="100">手机号</th>
</tr>
<template v-if="info.teamInstructors.length">
<tr v-for="(item, i) in info.teamInstructors" :key="i">
<td width="60">{{ item.name }}</td>
<td width="100">{{ item.position }}</td>
<td width="100">{{ item.phone }}</td>
</tr>
</template>
<tr v-else>
<td colspan="3">暂无数据</td>
</tr>
</table>
2 years ago
</td>
</tr>
<tr>
<th>竞赛阶段</th>
<td>
<table class="table tc">
<tr>
<th width="80">序号</th>
<th>赛项阶段名称</th>
2 years ago
<template v-if="form.completeCompetitionSetup.competitionType">
2 years ago
<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">
2 years ago
<td>{{ item.teamNumLimit || '不限制' }}</td>
2 years ago
<td>
2 years ago
<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>
2 years ago
</td>
<td v-if="info.team.captain === 0 && form.rule === 0 && !i" :rowspan="info.stages.length">{{ info.totalScore }}</td>
</template>
2 years ago
<td>
2 years ago
<span v-if="item.score" class="m-r-10">分数{{item.score}}</span>
2 years ago
<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>
2 years ago
</td>
2 years ago
</tr>
</template>
<tr v-else>
<td colspan="6">暂无数据</td>
2 years ago
</tr>
2 years ago
</table>
<el-alert
v-if="form.completeCompetitionSetup.competitionType && info.team.captain === 0"
style="margin-top: 10px;"
2 years ago
:title="'注:请团长(团队创建人)设置各阶段参赛成员,只有被选择的允许参赛成员可进入对应阶段比赛' + (info.teamLimit ? ',每个团队成员只能参加一个赛项阶段' : '') + '!'"
2 years ago
type="warning"
show-icon>
</el-alert>
</td>
</tr>
</table>
<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>
2 years ago
<el-button type="primary" @click="transfer">转让队长</el-button>
2 years ago
</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">
2 years ago
<el-button v-if="scope.row.captain" type="text" @click="removeLine(scope.row)">踢出团队</el-button>
2 years ago
</template>
</el-table-column>
</el-table>
</template>
2 years ago
</template>
3 years ago
</div>
</div>
</div>
2 years ago
<el-dialog title="报名" :visible.sync="enterVisible" :close-on-click-modal="false" width="300px" @close="enterClose">
<el-form class="dia-form">
<p style="margin-bottom: 5px">请选择要加入的团队</p>
<el-form-item>
2 years ago
<el-select class="w-100" v-model="enterForm.teamId" filterable>
2 years ago
<el-option v-for="(item, i) in teams" :key="i" :label="item.teamName" :value="item.teamId"></el-option>
</el-select>
</el-form-item>
<el-form-item>
<el-input placeholder="请输入团队邀请码" maxlength="6" v-model="enterForm.invitationCode"></el-input>
</el-form-item>
<el-form-item v-if="form.completeCompetitionSetup.isNeedCode">
<el-input placeholder="请输入大赛邀请码" maxlength="6" v-model="enterForm.registrationInvitationCode"></el-input>
</el-form-item>
<p class="tips">
查找不到团队点击 <el-link :underline="false" type="primary" @click="toTeam">创建团队</el-link>
</p>
</el-form>
<span slot="footer" class="dialog-footer">
<el-button size="small" type="primary" @click="enterSubmit">报名</el-button>
<el-button size="small" @click="enterVisible = false">取消</el-button>
</span>
</el-dialog>
<el-dialog title="创建团队" :visible.sync="teamVisible" :close-on-click-modal="false" width="300px" @close="teamClose">
<el-form class="dia-form">
<el-form-item>
<el-input placeholder="请输入团队名称" maxlength="10" v-model="teamForm.teamName"></el-input>
</el-form-item>
<el-form-item>
<el-input placeholder="请设置团队邀请码" maxlength="6" v-model="teamForm.invitationCode"></el-input>
</el-form-item>
<el-form-item v-if="form.completeCompetitionSetup.isNeedCode">
<el-input placeholder="请输入大赛邀请码" maxlength="6" v-model="teamForm.registrationInvitationCode"></el-input>
</el-form-item>
</el-form>
<span slot="footer" class="dialog-footer">
<el-button size="small" type="primary" @click="teamSubmit">创建并报名</el-button>
<el-button size="small" @click="teamVisible = false">取消</el-button>
</span>
</el-dialog>
2 years ago
<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">
2 years ago
<el-checkbox-group v-model="checkedMembers">
<el-checkbox v-for="(item, i) in chooses" :key="i" :label="item.accountId">{{ item.userName }}</el-checkbox>
2 years ago
</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>
2 years ago
<template v-if="members.length">
<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>
</template>
<tr v-else>
<td colspan="6">暂无数据</td>
2 years ago
</tr>
</table>
<span slot="footer" class="dialog-footer">
<el-button size="small" type="primary" @click="memberVisible = false">确定</el-button>
</span>
</el-dialog>
4 years ago
</div>
</template>
<script>
3 years ago
import { mapMutations } from "vuex";
import breadcrumb from '@/components/breadcrumb'
3 years ago
import util from '@/libs/util'
3 years ago
import Setting from "@/setting"
2 years ago
import Const from '@/const/match'
4 years ago
export default {
name: 'matchdetail',
data() {
return {
2 years ago
id: +this.$route.query.id,
2 years ago
end: '',
status: '',
2 years ago
statusList: ["等待报名", "取消报名", "立即报名", "报名截止", "进入初赛", "已结束"],
endList: ["报名开始", "报名截止", "报名截止", "竞赛开始", "竞赛结束", ""],
2 years ago
rules: Const.rules,
methods: Const.methods,
teamCalculationMethods: Const.teamCalculationMethods,
2 years ago
timerList: [],
3 years ago
form: {
name: '',
coverUrl: '',
description: '',
signUpStartTime: '',
signUpEndTime: '',
playStartTime: '',
playEndTime: '',
2 years ago
competitionStage: [],
2 years ago
completeCompetitionSetup: {},
competitionRegistration: {}
3 years ago
},
curType: '1',
4 years ago
typeList: [
{
id: '1',
4 years ago
name: '竞赛信息'
},
{
id: '2',
4 years ago
name: '竞赛进展'
},
{
id: '3',
name: '通知公告'
2 years ago
},
{
id: '4',
name: '竞赛排名'
},
4 years ago
],
progress: [],
3 years ago
timer: null,
notices: [],
2 years ago
noticeDetail: {},
2 years ago
curArch: '0',
arches: [],
ranks: [],
2 years ago
enterVisible: false,
enterForm: {
competitionId: this.$route.query.id,
teamId: '',
invitationCode: '',
2 years ago
registrationInvitationCode: '',
whetherSignUp: 1
2 years ago
},
teamVisible: false,
teams: [],
teamNameRepeat: false,
teamForm: {
competitionId: this.$route.query.id,
registrationInvitationCode: '',
teamName: '',
invitationCode: '',
2 years ago
whetherSignUp: 1
},
curStage: null,
2 years ago
originInfo: {},
2 years ago
info: {
isCaption: 0,
person: {},
caption: {},
team: {
captain: 1,
invitationCode: ''
},
stages: [],
teamDetail: [],
teamInstructors: []
2 years ago
},
2 years ago
originIns: {
position: '',
name: '',
phone: '',
},
checkedPlayer: '',
transferVisible: false,
editing: false,
memberVisible: false,
members: [],
curRow: {},
chooseVisible: false,
checkedMember: '',
2 years ago
checkedMembers: [],
chooses: [],
lastType: 1
4 years ago
};
},
components: {
breadcrumb
},
4 years ago
mounted() {
2 years ago
this.$once('hook:beforeDestroy', function() {
clearInterval(this.timer)
this.timerList.forEach(n => {
2 years ago
clearTimeout(n)
2 years ago
})
this.timerList = []
})
this.getData()
this.getProgress()
this.getNotice()
this.getTeam()
4 years ago
},
methods: {
3 years ago
...mapMutations('match', [
'SET_SOURCE'
]),
getData() { // 获取竞赛信息
2 years ago
this.$post(`${this.api.getCompetition}?competitionId=${this.id}`).then(({ competition }) => {
const list = competition.competitionAnnexList
// 附件
if (list) {
list.map(e => {
const { filePath } = e
e.canPreview = util.canPreview(filePath.substr(filePath.lastIndexOf('.') + 1))
})
}
2 years ago
const arches = []
// 积分赛才有总分排名
competition.rule === 0 && arches.push({
stageId: '0',
stageName: '总分'
})
arches.push(...competition.competitionStage)
arches.map(e => e.stageId = e.stageId + '')
this.arches = arches
2 years ago
this.form = competition
2 years ago
const reg = competition.competitionRegistration
2 years ago
// 报名后才显示参赛信息
if (reg) {
this.typeList.push({
id: '5',
name: '参赛信息'
})
this.getInfo()
}
2 years ago
this.getRank()
2 years ago
this.$refs.breadcrumb.update('全部赛事/' + competition.name)
2 years ago
this.handleStatus()
}).catch(err => {})
4 years ago
},
2 years ago
// 定时处理时间及状态
handleStatus() {
const { form } = this
let total = ''
let time = ''
let status = ''
let signUpStartTime = new Date(this.core.dateCompatible(form.signUpStartTime)) // 报名开始时间
let signUpEndTime = new Date(this.core.dateCompatible(form.signUpEndTime)) // 报名结束时间
let playStartTime = new Date(this.core.dateCompatible(form.playStartTime)) // 比赛开始时间
let playEndTime = new Date(this.core.dateCompatible(form.playEndTime)) // 比赛结束时间
this.timer = setInterval(() => {
const now = new Date()
if (now < signUpStartTime) { // 报名没开始
status = 0
total = signUpStartTime - now
} else if (now > signUpStartTime && now < signUpEndTime) { // 报名进行中
status = form.competitionRegistration ? 1 : 2 // 1已报名,2立即报名
total = signUpEndTime - now
} else if (now > signUpEndTime && now < playStartTime) { // 报名结束了,但比赛没开始
status = 3
total = playStartTime - now
} else if (now > playStartTime && now < playEndTime) { // 比赛进行中
// 进行中的赛事,则遍历每个阶段的开始结束时间,看阶段比赛是否开始
let curStage = null
const stages = form.competitionStage
if (stages) {
let endText = ''
for (const i in stages) {
const e = stages[i]
const startTime = new Date(e.startTime)
const endTime = new Date(e.endTime)
if (now < startTime) { // 阶段比赛未开始,不显示进入比赛按钮
endText = '阶段开始'
total = startTime - now
break
} else if (now >= startTime && now <= endTime && !e.count && e.method !== 2) { // 阶段比赛进行中,显示进入比赛按钮
if (form.competitionRegistration) this.statusList[4] = '进入' + e.stageName
endText = '阶段结束'
curStage = e
total = endTime - now
break
} else if (stages[i + 1] && now > endTime && now < new Date(stages[i + 1].startTime)) { // 过了该阶段的结束时间,但是没到下个阶段的开始时间,不显示进入比赛按钮
endText = '阶段开始'
total = new Date(stages[i + 1].startTime) - now
break
} else if (i === stages.length - 1) { // 当前时间在比赛开始结束时间之间,并且是最后一个阶段结束时间之后
this.$set(form, 'stageName', '')
endText = '竞赛结束'
total = playEndTime - now
break
}
}
this.endList[4] = endText
2 years ago
}
2 years ago
this.curStage = curStage
status = 4
} else if (now > playEndTime) { // 比赛结束
status = 5
2 years ago
}
2 years ago
this.status = status
total = total / 1000
--total
if (total > 86400) { // 超过一天则显示天数
clearInterval(this.timer)
this.end = Math.floor(total / 86400) + '天'
} else if (total > 0) { // 一天之内,显示时分秒
let hours = Math.floor(total / (60 * 60))
let minutes = Math.floor(total % (60 * 60) / 60)
let seconds = Math.floor(total % (60 * 60) % 60)
time = `${this.core.formateTime(hours)}:${this.core.formateTime(minutes)}:${this.core.formateTime(seconds)}`
if (total > 0) this.end = time
} else if (form.status === 5) { // 竞赛结束,清除定时器
clearInterval(this.timer)
}
}, 1000)
2 years ago
},
2 years ago
// 获取竞赛信息
getInfo() {
this.$post(`${this.api.entryInformation}?competitionId=${this.id}`).then(res => {
const info = res.entryInformation
2 years ago
// 如果是队长,并且没有指导老师,默认添加一个空的
if (!info.team.captain && !info.teamInstructors.length) info.teamInstructors.push(JSON.parse(JSON.stringify(this.originIns)))
2 years ago
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)
2 years ago
this.originInfo = JSON.parse(JSON.stringify(info))
// 设置定时器,阶段比赛结束后公布成绩,到时间后调本接口
const now = Date.now()
this.form.competitionStage.map(e => {
// 如果公布成绩详情勾选的是
if (!e.resultsDetails) {
const endTime = new Date(e.endTime).getTime() + e.resultAnnouncementTime * 3600000 // 阶段结束时间+成绩公布时间(成绩公布时间单位是小时,所以要转化为毫秒)
if (now > endTime) { // 如果到了公布时间
2 years ago
info.stages.find(n => n.stageId == e.stageId).showDetail = 1
2 years ago
} else { // 没有到公布时间,则加定时器,到点后调用
this.timerList.push(setTimeout(this.getInfo, endTime - now))
}
}
})
2 years ago
this.info = info
}).catch(err => {});
},
// 编辑保存
2 years ago
edit(showMsg) {
if (this.editing || !showMsg) {
2 years ago
const { teamId, teamName, invitationCode } = this.info.team
2 years ago
this.$post(this.api.editCompetitionTeam, {
2 years ago
competitionId: this.id,
teamId,
teamName,
invitationCode,
whetherSignUp: 0
}).then(res => {
this.getInfo()
2 years ago
showMsg && util.successMsg('保存成功')
2 years ago
}).catch(res => {})
} else {
this.editing = !this.editing
}
},
getProgress() { // 获取竞赛进展
2 years ago
this.$get(this.api.getCompetitionProgress, {
competitionId: this.id
3 years ago
}).then(res => {
2 years ago
this.progress = res.competitionProgressList.reverse()
}).catch(err => {});
4 years ago
},
3 years ago
// 公告列表
getNotice() {
2 years ago
this.$post(`${this.api.queryAnnouncementByCompetitionId}?pageNum=1&pageSize=1000&competitionId=${this.id}`).then(({ data }) => {
const records = data.records.filter(e => e.status) // 只显示已发布的(status 0草稿 1为已发布)
records.map(e => {
e.announcementText = e.announcementText.replace(/<img.*?(?:>|\/>)/gi, '')
})
this.notices = records
3 years ago
}).catch(res => {})
},
// 预览附件
preview(item) {
const { filePath } = item
const suffix = filePath.substr(filePath.lastIndexOf('.') + 1)
window.open((util.isDoc(suffix) ? 'https://view.officeapps.live.com/op/view.aspx?src=' : '') + item.filePath)
3 years ago
},
// 下载附件
download(item) {
util.downloadFile(item.fileName, item.filePath)
},
2 years ago
// tab切换 前三个滚动,后两个切换
3 years ago
typeChange() {
2 years ago
const type = +this.curType
2 years ago
// 如果上个选中的是参赛信息,则检查修改数据后有没保存(团队名称、邀请码、指导老师)
if (this.lastType == 5) {
const { team, teamInstructors } = this.info
const { originInfo } = this
let notSave = 0
// 如果团队名称或者邀请码有修改
if (team.teamName !== originInfo.team.teamName || team.invitationCode !== originInfo.team.invitationCode) {
notSave = 1
} else if (JSON.stringify(teamInstructors) !== JSON.stringify(originInfo.teamInstructors)) {
notSave = 2
}
if (notSave) {
this.$confirm('所填写内容暂未保存,是否保存?', "提示", {
type: "warning"
}).then(() => {
// 保存团队名称和邀请码
if (notSave === 1) {
this.edit()
} else { // 保存指导老师
teamInstructors.map(e => {
e.name && this.$post(this.api.addAnAdvisor, {
name: e.name,
competitionId: this.id,
id: e.id,
teamId: this.form.competitionRegistration ? this.form.competitionRegistration.teamId : '',
phone: e.phone,
position: e.position,
}).then(res => {}).catch(res => {})
})
}
}).catch(() => {})
} else {
type < 4 && document.querySelector(`#part${type}`).scrollIntoView()
}
2 years ago
} else {
2 years ago
type == 5 && this.getInfo()
type < 4 && document.querySelector(`#part${type}`).scrollIntoView()
2 years ago
}
2 years ago
this.editing = false
this.lastType = type
3 years ago
},
// 跳转公告详情
toNotice(item) {
3 years ago
this.$router.push(`noticeDetail?id=${item.id}&matchId=${this.id}&name=${this.form.name}&end=${this.end}&status=${this.status}`)
3 years ago
},
2 years ago
// 获取排名
getRank() {
const cur = +this.curArch
const data = {
pageNum: 1,
pageSize: 1000,
competitionId: this.id,
isOverallRanking: cur ? 0 : 1
}
2 years ago
data.stageIds = cur ? cur: ''
this.$post(this.api.frontOfficeCompetitionRanking, data).then(({ list }) => {
this.ranks = list
}).catch(res => {})
2 years ago
},
// 删除指导老师
delAdvisor(row, i) {
if (row.id) {
this.$confirm('确定要删除吗?', '提示', {
type: 'warning'
}).then(() => {
this.$post(`${this.api.deleteAnAdvisor}?id=${row.id}`).then(res => {
util.successMsg('删除成功')
2 years ago
this.getInfo()
2 years ago
}).catch(res => {})
}).catch(() => {})
} else {
2 years ago
this.info.teamInstructors.splice(i, 1)
2 years ago
}
},
// 添加指导老师
addAdvisor() {
2 years ago
if (this.info.teamInstructors.length > 4) return util.errorMsg('指导老师仅限添加5个!')
2 years ago
this.info.teamInstructors.push(JSON.parse(JSON.stringify(this.originIns)))
},
2 years ago
// 编辑导老师
editAdvisor(row) {
this.$set(row, 'edit', 1)
},
2 years ago
// 提交指导老师
submitAdvisor(row) {
if (!row.name) return util.errorMsg('请输入姓名')
2 years ago
const { phone } = row
if (phone && !/^1[3456789]\d{9}$/.test(phone)) return util.errorMsg('请输入正确手机号格式')
2 years ago
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() {
2 years ago
// 取每个阶段的开始结束时间,有任何阶段开始了都不能转让队长和踢出队员
const now = new Date()
let start = 0
for (const e of this.form.competitionStage) {
if (now >= new Date(e.startTime) && now <= new Date(e.endTime)) {
util.errorMsg('比赛已经开始,无法转让队长!')
start = 1
break
}
}
if (!start) this.transferVisible = true
2 years ago
},
// 转让队长提交
transferSubmit() {
if (!this.checkedPlayer) return util.errorMsg('请选择成员')
this.$post(this.api.captainOfTransfer, {
captainId: this.info.caption.teamId,
playerId: this.checkedPlayer
}).then(res => {
2 years ago
this.checkedPlayer = ''
2 years ago
util.successMsg('转让成功')
this.transferVisible = false
this.getInfo()
}).catch(res => {})
},
// 踢出团队
removeLine(row) {
2 years ago
// 取每个阶段的开始结束时间,有任何阶段开始了都不能转让队长和踢出队员
const now = new Date()
let start = 0
for (const e of this.form.competitionStage) {
if (now >= new Date(e.startTime) && now <= new Date(e.endTime)) {
util.errorMsg('比赛已经开始,无法踢出成员!')
start = 1
break
}
}
if (!start) {
this.$confirm('确定要踢出该成员吗?', '提示', {
type: 'warning'
}).then(() => {
this.$post(`${this.api.removeTheLine}?teamId=${this.info.teamId}&competitionId=${this.id}&accountId=${row.accountId}`).then(res => {
util.successMsg('移除成功')
this.getInfo()
}).catch(res => {})
}).catch(() => {})
}
2 years ago
},
// 选择参赛人员
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 {
2 years ago
const { teamLimit, stages, teamDetail } = this.info
// teamLimit=true,则每个成员只能参加一个阶段的比赛,要获取stages里返回的所有participantAccountIds(参赛人员的accountId),然后不显示这些参赛人员
if (teamLimit) {
const chooses = []
let ids = []
// 获取已经允许参赛的人员accountId
stages.map(e => {
const id = e.participantAccountIds
id && ids.push(...id.split(',').map(n => +n))
})
ids = [...new Set(ids)]
teamDetail.map(e => {
ids.includes(e.accountId) || chooses.push(e) // 没有参赛的人员则显示出来
})
this.chooses = chooses
} else {
this.chooses = this.info.teamDetail
}
2 years ago
this.curRow = row
this.chooseVisible = true
}
}
},
// 选择参赛人员提交
chooseSubmit() {
2 years ago
const accountIds = this.checkedMembers
if (!accountIds.length) return util.errorMsg('请选择参赛成员!')
const limit = this.curRow.teamNumLimit // 参赛人数限制
if (accountIds.length > limit) return util.errorMsg(`请选择${limit}个以下参赛成员!`) // 选择的参赛人员个数不能大于参赛人数限制
2 years ago
this.$post(this.api.stageSelectParticipants, {
2 years ago
accountIds,
2 years ago
competitionId: this.id,
stageId: this.curRow.stageId,
2 years ago
teamId: this.info.teamId
2 years ago
}).then(res => {
2 years ago
this.checkedMembers = []
2 years ago
util.successMsg('修改成功')
this.getInfo()
this.chooseVisible = false
}).catch(res => {})
},
// 查看成绩详情
show(row) {
// 团队展示弹框,个人跳转实验报告
2 years ago
if (this.form.completeCompetitionSetup.competitionType && this.info.team.captain === 0) { // 团队比赛并且是队长,则展示团队成员成绩详情
2 years ago
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,则进入实验报告
2 years ago
this.toReport(row)
2 years ago
}
},
2 years ago
// 跳转实验报告
toReport(row) {
this.$router.push(`/record/show?reportId=${row.reportId}`)
},
2 years ago
// 报名提交
enterSubmit() {
const form = this.enterForm
if (!form.teamId) return util.errorMsg('请选择团队')
if (!form.invitationCode) return util.errorMsg('请输入团队邀请码')
if (this.form.completeCompetitionSetup.isNeedCode && !form.registrationInvitationCode) return util.errorMsg('请输入大赛邀请码')
this.$post(this.api.joinCompetitionTeam, form).then(({ status, data, message }) => {
this.enterVisible = false
this.getData()
util.successMsg('报名成功!')
}).catch(res => {})
},
// 团队关闭
enterClose() {
this.enterForm = {
competitionId: this.id,
teamId: '',
registrationInvitationCode: '',
2 years ago
invitationCode: '',
whetherSignUp: 1
2 years ago
}
},
// 创建团队
toTeam() {
this.teamVisible = true
},
// 获取团队列表
getTeam() {
this.$get(this.api.searchTeam, {
teamName: '',
competitionId: this.id
}).then(({ teamList }) => {
this.teams = teamList
}).catch(res => {})
},
// 团队提交
teamSubmit() {
const form = this.teamForm
if (!form.teamName) return util.errorMsg('请输入团队名称')
if (this.teamNameRepeat) return util.errorMsg('团队名称重复,请重新输入')
if (form.invitationCode.length !== 6) return util.errorMsg('请输入6位数团队邀请码')
if (this.form.completeCompetitionSetup.isNeedCode && !form.registrationInvitationCode) return util.errorMsg('请输入大赛邀请码')
this.$post(this.api.addCompetitionTeam, form).then(({ status, data, message }) => {
this.teamVisible = false
this.enterVisible = false
this.getData()
util.successMsg('报名成功!')
}).catch(res => {})
},
// 团队关闭
teamClose() {
this.teamForm = {
competitionId: this.id,
teamName: '',
invitationCode: '',
2 years ago
registrationInvitationCode: '',
whetherSignUp: 1
2 years ago
}
},
2 years ago
// 判断是否能进赛事
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()
}
},
3 years ago
// 立即报名
signup(){
2 years ago
const { status, form } = this
2 years ago
// 如果登录了
3 years ago
if (util.local.get(Setting.tokenKey)) {
2 years ago
const { competitionType } = form.completeCompetitionSetup
2 years ago
if (status == 4) { // 进入比赛
2 years ago
if (form.competitionRegistration.isDisable === 1) return util.errorMsg('当前用户已被禁赛,如有疑问,请联系平台管理员。') // 被禁用的用户不能进入大赛
// 团队赛,则判断是否为参赛人员
if (competitionType) {
this.$post(this.api.isParticipant, {
2 years ago
competitionId: this.id,
stageId: this.curStage.stageId,
teamId: form.competitionRegistration.teamId,
}).then(res => {
2 years ago
this.getAllow()
2 years ago
}).catch(res => {})
} else {
2 years ago
this.getAllow()
2 years ago
}
2 years ago
} else if (status == 2) { // 报名
// 团队赛报名
2 years ago
if (competitionType) {
2 years ago
this.enterVisible = true
} else { // 个人赛报名
this.$post(this.api.addCompetitionRegistration, {
competitionId: this.id
}).then(res => {
this.getData()
3 years ago
this.$message.success('报名成功')
2 years ago
}).catch(res => {})
}
} else if (status == 1) {
3 years ago
// 已报名,点击取消报名
this.$confirm('是否要取消报名?', '提示', {
type: 'success'
}).then(() => {
2 years ago
this.$post(`${this.api.cancelRegistration}?competitionId=${this.id}`).then(res => {
this.getData()
3 years ago
this.$message.success('取消报名成功')
}).catch(res => {})
}).catch(() => {})
}
2 years ago
} else { // 如果没登录,提示去登录
3 years ago
this.$confirm('请先登录,是否直接前往登录?', "提示", {
type: 'success'
}).then(() => {
3 years ago
this.SET_SOURCE(this.id)
3 years ago
this.$router.push('/login')
}).catch(() => {})
}
2 years ago
},
// 进入python系统
toPython() {
const form = this.curStage
let token = util.local.get(Setting.tokenKey);
util.cookies.set('assessmentId', '', -1)
util.cookies.set('startTime', '', -1)
util.cookies.set('stopTime', '', -1)
util.cookies.set('projectId', form.projectId)
util.cookies.set('token', token)
util.cookies.set('courseId', form.cid)
2 years ago
util.cookies.set('curriculumName', escape(form.systemName))
2 years ago
util.cookies.set('systemId', form.systemId)
util.cookies.set('competitionId', this.form.id)
util.cookies.set('stageId', form.stageId)
util.cookies.set('teamId', this.form.competitionRegistration.teamId)
2 years ago
util.cookies.set('stopTime', form.endTime)
util.cookies.set('resultsDetails', form.resultsDetails)
util.cookies.set('resultAnnouncementTime', form.resultAnnouncementTime)
2 years ago
util.cookies.set('fromManager', '', -1)
// 8个python子系统都跳这个地址,子系统会通过cookie里的systemId识别展示哪套系统
location.href = process.env.NODE_ENV === 'development' ?
`http://${location.hostname}:8085/#/` :
Setting.isPro ?
`https://${location.hostname}/pyTrials` :
`${location.origin}/pyTrials`
},
// 进入子系统
toSub() {
const { form } = this
2 years ago
const { systemId, projectId, cid, stageId } = this.curStage
2 years ago
const competitionId = form.id
const teamId = form.competitionRegistration.teamId
let token = util.local.get(Setting.tokenKey);
if (systemId == 11) {
// 银行系统
2 years ago
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`
2 years ago
} 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)
}
4 years ago
}
}
};
</script>
<style lang="scss" scoped>
.banner{
3 years ago
width: 100%;
height: 350px;
padding: 120px 0 0 20%;
color: #fff;
background-size: 100% 350px;
background-repeat: no-repeat;
}
3 years ago
.l-title {
font-size: 18px;
}
2 years ago
.main .center-con {
3 years ago
background: url(../../../assets/img/match-bg1.png) (0px 95px)/auto auto no-repeat,
url(../../../assets/img/match-bg2.png) (98% 300px)/auto auto no-repeat;
}
.main .center-wrap {
margin-top: 30px;
}
2 years ago
.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;
2 years ago
color: #6e6e6e;
2 years ago
}
}
2 years ago
/deep/.el-tabs__item {
box-shadow: none !important;
}
.content{
position: relative;
padding: 20px 40px;
margin-top: 30px;
background-color: #fff;
.title{
width: 67%;
margin: 0 auto;
font-size: 28px;
text-align: center;
color: #0B1D30;
}
2 years ago
.tool {
2 years ago
z-index: 100;
2 years ago
position: sticky;
top: 64px;
2 years ago
margin-bottom: 20px;
2 years ago
background-color: #fff;
}
3 years ago
.info .meta{
padding: 16px 0;
font-size: 12px;
color: #999;
text-align: center;
}
.action {
display: inline-flex;
align-items: center;
}
.status {
padding: 0 16px;
margin-left: 20px;
line-height: 34px;
font-size: 14px;
color: #fff;
background-color: #52C41A;
border-radius: 4px;
cursor: pointer;
&.wait {
background-color: #FAAD14;
4 years ago
}
&.signing {
background-color: $main-color;
}
&.signed {
background-color: #52C41A;
}
2 years ago
&.playing {
background-color: #f96d6d;
}
&.finish {
background-color: #ccc;
4 years ago
}
}
.end-text {
font-size: 12px;
color: #666;
em {
font-style: normal;
color: #f00;
}
}
.texts{
margin: 20px 0 50px;
font-size: 14px;
line-height: 1.6;
text-indent: 2em;
overflow: hidden;
/deep/img{
max-width: 100%;
4 years ago
}
}
.progress{
position: relative;
width: 95%;
padding: 50px 0;
3 years ago
margin: 40px auto 80px;
text-align: left;
&:before{
content: '';
position: absolute;
top: 0;
left: 50%;
width: 2px;
height: 100%;
background-color: #E1E6F2;
}
&:after {
content: '';
position: absolute;
top: -10px;
left: 430px;
border: 8px solid transparent;
border-bottom-color: #E1E6F2;
}
.rocket {
position: absolute;
bottom: -50px;
left: 425px;
}
li{
4 years ago
position: relative;
width: 400px;
margin-bottom: 42px;
.dot{
position: absolute;
top: 12px;
left: 431px;
width: 15px;
height: 15px;
background-color: #DCDCDC;
border-radius: 50%;
4 years ago
}
.name{
display: inline-block;
padding: 0 19px;
margin-bottom: 16px;
line-height: 40px;
text-align: center;
font-size: 16px;
color: #fff;
border-radius: 20px;
background-color: #C4C4C4;
4 years ago
}
.desc{
4 years ago
position: relative;
color: #333;
font-size: 14px;
}
&.ing, &.done {
.dot {
top: 8px;
background-color: #007EFF;
}
.name {
background-color: #007EFF;
4 years ago
}
}
&.ing {
.dot {
width: 27px;
height: 27px;
border: 6px solid #E2F1FB;
}
}
&:nth-child(odd) {
text-align: right;
&.ing {
.dot {
left: auto;
right: -51px;
}
}
.name {
&:before {
content: '';
z-index: 2;
position: absolute;
top: 14px;
right: -35px;
border: 18px solid transparent;
border-top-width: 6px;
border-bottom-width: 6px;
border-left-color: #C4C4C4;
}
}
.desc {
text-align: right;
}
&.ing, &.done {
.name {
&:before {
border-left-color: #007EFF;
}
}
}
}
&:nth-child(even) {
margin-left: 482px;
.dot {
left: -51px;
}
&.ing {
.dot {
left: -57px;
}
}
.name {
text-align: left;
&:after {
content: '';
z-index: 2;
position: absolute;
top: 14px;
left: -35px;
border: 18px solid transparent;
border-top-width: 6px;
border-bottom-width: 6px;
border-right-color: #C4C4C4;
}
}
.desc {
&:before {
left: auto;
right: -16px;
border: 8px solid transparent;
border-left-color: #fff;
4 years ago
}
&:after {
left: auto;
right: -18px;
border: 9px solid transparent;
border-left-color: #E6E6E6;
4 years ago
}
}
&.ing, &.done {
.name {
&:after {
border-right-color: #007EFF;
}
}
}
}
&:last-child{
margin-bottom: 0;
}
4 years ago
}
}
}
3 years ago
.files {
margin-bottom: 30px;
li {
display: flex;
align-items: center;
margin: 10px 0;
}
.fileName {
margin-right: 10px;
font-size: 12px;
}
3 years ago
}
.notice-list {
text-align: left;
li {
padding: 16px;
margin-bottom: 12px;
transition: all 0.3s;
cursor: pointer;
border-radius: 6px;
background-color: #fff;
border-bottom: 1px dashed #ebebeb;
&:last-child {
border-bottom: 0;
}
}
h6 {
font-size: 20px;
font-weight: 500;
color: #0B1D30;
&:hover {
color: #007EFF;
}
}
.meta {
margin: 10px 0;
font-size: 14px;
color: #666;
}
.des {
font-size: 14px;
color: #333;
line-height: 24px;
display: -webkit-box;
display:-moz-box;
-webkit-box-orient: vertical;
-moz-box-orient: vertical;
-webkit-line-clamp: 2;
-moz-line-clamp: 2;
overflow: hidden;
text-overflow: ellipsis;
}
}
2 years ago
.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;
2 years ago
margin-bottom: 10px;
2 years ago
.el-input {
margin-right: 15px;
}
}
}
.flex-center {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 15px;
}
2 years ago
/deep/.dia-form {
.w-100 {
width: 100%;
}
.tips {
display: flex;
justify-content: center;
align-items: center;
}
}
4 years ago
</style>