竞赛文件上传

alioss
yujialong 1 year ago
parent 5be4e2f204
commit 60b86efb83
  1. 2
      src/api/index.js
  2. 145
      src/pages/match/details/index.vue
  3. 145
      src/pages/match/list/index.vue
  4. 14
      src/pages/station/list/index.vue
  5. 281
      src/pages/touristMatch/list/index.vue
  6. 2
      src/setting.js

@ -143,6 +143,8 @@ export default {
stageTeamScoreDetails: `competition/competition/rank/stageTeamScoreDetails`,
getRedisCacheCompetition: `competition/competition/management/getRedisCache`,
getCompetitionStageRankingTime: `competition/competitionReleaseTime/getCompetitionStageRankingTime`,
cCompetitionStageFileSave: `competition/cCompetitionStageFile/save`,
cCompetitionStageFileDel: `competition/cCompetitionStageFile/batchDeletion`,
// 创业活动
activityList: `occupationlab/occupationlab/activity/activityList`,

@ -616,6 +616,58 @@
@click="memberVisible = false">确定</el-button>
</span>
</el-dialog>
<el-dialog title="阶段赛名称"
:visible.sync="stageVisible"
:close-on-click-modal="false"
width="600px">
<template v-if="curStage && curStage.competitionStageContentSetting">
<el-button v-if="curStage.competitionStageContentSetting.systemLink"
type="text"
style="font-size: 13px"
@click="toOffline">进入{{ curStage.stageName }}</el-button>
<div v-if="curStage.competitionStageContentSetting.fileUrl"
class="flex a-center m-b-10">
<p class="m-r-10"
style="font-size: 13px">文件下载{{ curStage.competitionStageContentSetting.fileName }}</p>
<el-button type="text"
style="font-size: 13px"
@click="download({fileName: curStage.competitionStageContentSetting.fileName, filePath: curStage.competitionStageContentSetting.fileUrl})">点击下载</el-button>
</div>
<div class="flex m-b-20">
<span style="font-size: 12px">文件上传</span>
<el-upload :before-upload="beforeUpload"
:on-remove="handleRemove"
:on-error="uploadError"
:on-success="uploadSuccess"
:before-remove="beforeRemove"
:limit="1"
:on-exceed="handleExceed"
:action="api.fileUploadNakadai"
:headers="headers"
name="file">
<el-button size="small"
type="primary">上传试卷</el-button>
<div slot="tip"
class="el-upload__tip">
<p>请上传大小1G以内的文件支持常见文件格式</p>
<p>只允许上传一个文件如有多个文件则需打包再上传</p>
</div>
</el-upload>
</div>
<div>说明{{ curStage.competitionStageContentSetting.stageExplain }}</div>
</template>
<span slot="footer"
class="dialog-footer">
<el-button size="small"
type="primary"
@click="stageSubmit">提交</el-button>
<el-button size="small"
@click="stageVisible = false">取消</el-button>
</span>
</el-dialog>
</div>
</template>
@ -629,6 +681,9 @@ export default {
name: 'matchdetail',
data () {
return {
headers: {
token: util.local.get(Setting.tokenKey)
},
token: util.local.get(Setting.tokenKey),
id: +this.$route.query.id,
end: '',
@ -733,6 +788,10 @@ export default {
peopleSignupForm: {
registrationInvitationCode: ''
},
submiting: false,
stageVisible: false,
filesResult: {}
};
},
computed: {
@ -815,7 +874,7 @@ export default {
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(() => {
// this.timer = setInterval(() => {
const now = new Date()
if (now < signUpStartTime) { //
status = 0
@ -840,18 +899,20 @@ export default {
if (stages) {
this.playingStages = []
form.competitionRegistration && stages.forEach(e => {
if (now >= new Date(e.startTime) && now <= new Date(e.endTime) && (e.method !== 2 || this.isLink(e))) this.playingStages.push(e)
if (now >= new Date(e.startTime) && now <= new Date(e.endTime) && (e.method !== 2 || this.offlineCanEntry(e))) this.playingStages.push(e)
})
let endText = ''
for (const i in stages) {
const e = stages[i]
const startTime = new Date(e.startTime)
const endTime = new Date(e.endTime)
console.log("🚀 ~ file: index.vue:901 ~ //this.timer=setInterval ~ form.competitionRegistration:", stages, startTime, endTime, now >= startTime && now <= endTime)
if (now < startTime) { //
endText = '阶段开始'
total = startTime - now
break
} else if (now >= startTime && now <= endTime && (e.method !== 2 || this.isLink(e))) { //
} else if (now >= startTime && now <= endTime) { //
// 线
if (e.method !== 2) {
if (form.competitionRegistration) { //
this.statusList[4] = e.count ? '已提交' : '进入' + e.stageName
@ -860,8 +921,12 @@ export default {
this.statusList[4] = '进入' + e.stageName
curStage = e
}
} else {
} else if (this.offlineCanEntry(e)) { // 线()
//
//
//
this.statusList[4] = '进入' + e.stageName
console.log("🚀 ~ file: index.vue:924 ~ //this.timer=setInterval ~ e:", e, this.playingStages)
curStage = e
}
endText = '阶段结束'
@ -903,11 +968,11 @@ export default {
} else if (this.status === 5) { //
clearInterval(this.timer)
}
}, 1000)
// }, 1000)
},
isLink (stage) {
console.log("🚀 ~ file: index.vue:904 ~ isLink ~ stage:", stage)
return stage.method === 2 && /[a-zA-Z\d]+\.[a-zA-Z]+/.test(stage.offlineAddress)
// 线
offlineCanEntry (stage) {
return stage.method === 2 && stage.competitionStageContentSetting && !!(stage.competitionStageContentSetting.systemLink || stage.competitionStageContentSetting.whetherToUploadFiles)
},
//
getInfo () {
@ -1066,7 +1131,7 @@ export default {
},
//
intervalRank () {
this.rankTimer = setInterval(this.getRank, 1000)
// this.rankTimer = setInterval(this.getRank, 1000)
},
//
@ -1348,6 +1413,56 @@ export default {
}
},
//
beforeUpload (file) {
const oversize = file.size / 1024 / 1024 < 1000
if (!oversize) util.warningMsg('请上传小于1GB的附件!')
if (oversize) {
return true
} else {
return false
}
},
uploadError (err, file, fileList) {
this.$message({
message: "上传出错,请重试!",
type: "error",
center: true
})
},
beforeRemove (file, fileList) {
return this.$confirm(`确定移除 ${file.name}`);
},
handleExceed (files, fileList) {
util.warningMsg(`当前限制选择 1 个文件,如需更换,请删除上一个文件再重新选择!`);
},
handleRemove (file, fileList) { },
uploadSuccess (res) {
this.filesResult = res.filesResult
},
//
stageSubmit () {
if (this.submiting) return false
this.submiting = true
//
this.curStage.competitionStageFile && this.$post(this.api.cCompetitionStageFileDel, [this.curStage.competitionStageFile.id]).then(res => { }).catch(res => { })
this.$post(this.api.cCompetitionStageFileSave, {
competitionId: this.id,
fileFormat: this.filesResult.fileType,
fileName: this.filesResult.originalFileName,
filePath: this.filesResult.fileUrl,
fileSize: this.filesResult.fileSize,
ossFileName: this.filesResult.ossFileName,
stageId: this.curStage.stageId,
teamId: this.form.competitionRegistration.teamId
}).then(res => {
util.successMsg('提交成功!')
this.stageVisible = false
this.submiting = false
}).catch(res => { })
},
//
chooseStage (e) {
this.curStage = e
@ -1376,9 +1491,15 @@ export default {
if (util.local.get(Setting.tokenKey)) {
const { competitionType } = form.completeCompetitionSetup
if (status == 4) { //
// 线
// 线(handleStatus)
if (this.curStage.method == 2) {
window.open(this.curStage.offlineAddress)
//
if (!this.curStage.competitionStageContentSetting.whetherToUploadFiles) {
window.open(this.curStage.competitionStageContentSetting.systemLink)
} else { //
this.stageVisible = true
console.log("🚀 ~ file: index.vue:1499 ~ signup ~ this.curStage:", this.curStage)
}
} else {
//
if (this.curStage && this.curStage.count) return util.errorMsg('您已经参加过该阶段竞赛!')
@ -1435,7 +1556,7 @@ export default {
},
// 线<>
toOffline () {
window.open(this.curStage.offlineAddress)
window.open(this.curStage.competitionStageContentSetting.systemLink)
},
// python
toPython () {

@ -263,6 +263,58 @@
@click="teamVisible = false">取消</el-button>
</span>
</el-dialog>
<el-dialog title="阶段赛名称"
:visible.sync="stageVisible"
:close-on-click-modal="false"
width="600px">
<template v-if="curStageItem && curStageItem.competitionStageContentSetting">
<el-button v-if="curStageItem.competitionStageContentSetting.systemLink"
type="text"
style="font-size: 13px"
@click="toOffline">进入{{ curStageItem.stageName }}</el-button>
<div v-if="curStageItem.competitionStageContentSetting.fileUrl"
class="flex a-center m-b-10">
<p class="m-r-10"
style="font-size: 13px">文件下载{{ curStageItem.competitionStageContentSetting.fileName }}</p>
<el-button type="text"
style="font-size: 13px"
@click="download({fileName: curStageItem.competitionStageContentSetting.fileName, filePath: curStageItem.competitionStageContentSetting.fileUrl})">点击下载</el-button>
</div>
<div class="flex m-b-20">
<span style="font-size: 12px">文件上传</span>
<el-upload :before-upload="beforeUpload"
:on-remove="handleRemove"
:on-error="uploadError"
:on-success="uploadSuccess"
:before-remove="beforeRemove"
:limit="1"
:on-exceed="handleExceed"
:action="api.fileUploadNakadai"
:headers="headers"
name="file">
<el-button size="small"
type="primary">上传试卷</el-button>
<div slot="tip"
class="el-upload__tip">
<p>请上传大小1G以内的文件支持常见文件格式</p>
<p>只允许上传一个文件如有多个文件则需打包再上传</p>
</div>
</el-upload>
</div>
<div>说明{{ curStageItem.competitionStageContentSetting.stageExplain }}</div>
</template>
<span slot="footer"
class="dialog-footer">
<el-button size="small"
type="primary"
@click="stageSubmit">提交</el-button>
<el-button size="small"
@click="stageVisible = false">取消</el-button>
</span>
</el-dialog>
</div>
</template>
@ -276,6 +328,9 @@ export default {
name: "match",
data () {
return {
headers: {
token: util.local.get(Setting.tokenKey)
},
timer: null,
token: util.local.get(Setting.tokenKey),
statusList: ["待报名", "取消报名", "马上报名", "报名截止", "进入初赛", "已结束"],
@ -384,7 +439,12 @@ export default {
peopleSignupForm: {
registrationInvitationCode: ''
},
curRow: {}
curRow: {},
submiting: false,
stageVisible: false,
filesResult: {},
curStageItem: {}
};
},
computed: {
@ -494,7 +554,7 @@ export default {
item.playingStages = []
//
item.whetherToSignUp === 0 && stages.forEach(e => {
if (now >= new Date(e.startTime) && now <= new Date(e.endTime) && (e.method !== 2 || this.isLink(e))) item.playingStages.push(e)
if (now >= new Date(e.startTime) && now <= new Date(e.endTime) && (e.method !== 2 || this.offlineCanEntry(e))) item.playingStages.push(e)
})
for (const i in stages) {
const e = stages[i]
@ -506,7 +566,7 @@ export default {
total = startTime - now
break
} else if (now >= startTime && now <= endTime) { //
if (item.whetherToSignUp === 0 && (e.method !== 2 || this.isLink(e))) this.$set(item, 'stageName', (!this.isLink(e) && e.count) ? '已提交' : '进入' + e.stageName) //
if (item.whetherToSignUp === 0 && (e.method !== 2 || this.offlineCanEntry(e))) this.$set(item, 'stageName', (!this.offlineCanEntry(e) && e.count) ? '已提交' : '进入' + e.stageName) //
this.$set(item, 'endText', '阶段结束')
curStage = e
total = endTime - now
@ -553,9 +613,6 @@ export default {
}
})
},
isLink (stage) {
return stage.method === 2 && /[a-zA-Z\d]+\.[a-zA-Z]+/.test(stage.offlineAddress)
},
//
clearTimer () {
this.timerList.forEach(n => {
@ -679,6 +736,71 @@ export default {
util.successMsg('报名成功!')
}).catch(res => { })
},
// 线
offlineCanEntry (stage) {
return stage.method === 2 && stage.competitionStageContentSetting && !!(stage.competitionStageContentSetting.systemLink || stage.competitionStageContentSetting.whetherToUploadFiles)
},
//
beforeUpload (file) {
const oversize = file.size / 1024 / 1024 < 1000
if (!oversize) util.warningMsg('请上传小于1GB的附件!')
if (oversize) {
return true
} else {
return false
}
},
uploadError (err, file, fileList) {
this.$message({
message: "上传出错,请重试!",
type: "error",
center: true
})
},
beforeRemove (file, fileList) {
return this.$confirm(`确定移除 ${file.name}`);
},
handleExceed (files, fileList) {
util.warningMsg(`当前限制选择 1 个文件,如需更换,请删除上一个文件再重新选择!`);
},
handleRemove (file, fileList) { },
uploadSuccess (res) {
this.filesResult = res.filesResult
},
//
stageSubmit () {
if (this.submiting) return false
this.submiting = true
//
this.curStageItem.competitionStageFile && this.$post(this.api.cCompetitionStageFileDel, [this.curStageItem.competitionStageFile.id]).then(res => { }).catch(res => { })
this.$post(this.api.cCompetitionStageFileSave, {
competitionId: this.curItem.id,
fileFormat: this.filesResult.fileType,
fileName: this.filesResult.originalFileName,
filePath: this.filesResult.fileUrl,
fileSize: this.filesResult.fileSize,
ossFileName: this.filesResult.ossFileName,
stageId: this.curStageItem.stageId,
teamId: this.curItem.teamId
}).then(res => {
util.successMsg('提交成功!')
this.stageVisible = false
this.submiting = false
}).catch(res => { })
},
//
download (item) {
util.downloadFile(item.fileName, item.filePath)
},
// 线<>
toOffline () {
window.open(this.curStageItem.competitionStageContentSetting.systemLink)
},
stageClick (e) { },
//
chooseStage (e, item) {
@ -709,9 +831,16 @@ export default {
if (util.local.get(Setting.tokenKey)) {
this.curItem = item
if (status == 4) { //
// 线
// 线(handleStatus)
if (item.curStage.method == 2) {
window.open(item.curStage.offlineAddress)
//
if (!item.curStage.competitionStageContentSetting.whetherToUploadFiles) {
window.open(item.curStage.competitionStageContentSetting.systemLink)
} else { //
this.curStageItem = item.curStage
this.stageVisible = true
console.log("🚀 ~ file: index.vue:830 ~ signup ~ this.curItem:", this.curItem.curStage.competitionStageContentSetting.systemLink)
}
} else {
//
if (item.curStage.count) return util.errorMsg('您已经参加过该阶段竞赛!')

@ -24,10 +24,10 @@
<template v-if="curriculumList.length">
<template v-for="(item,i) in curriculumList">
<div class="item"
:title="item.curriculumName"
:title="item.goodsName"
@click="goPreview(item)"
:key="i"
v-if="!keyword || item.curriculumName.includes(keyword)">
v-if="!keyword || item.goodsName.includes(keyword)">
<div v-if="isZj || isSq"
class="cover"
:style="{backgroundImage: 'url(/images/' + i + '.png)'}"></div>
@ -79,16 +79,6 @@ export default {
}
},
mounted () {
axios.get(`https://www.occupationlab.com/users/users/userInfo/getUserInfo`, {
headers: {
token: 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1c2VyIiwiaWF0IjoxNjk5NDE3OTMzLCJleHAiOjE2OTk0NjExMzMsImFjY291bnRJZCI6IjMwIn0.UeUcT8K5t6o5_Vsr58v9-P6KiOmf44TLJwXU61GzZ4Y'
}
}).then(({ data }) => {
}).catch(res => { })
this.getschoolCourse();
},
methods: {

@ -3,47 +3,61 @@
<div class="search">
<h6>赛事竞技精彩纷呈</h6>
<div class="input">
<img src="@/assets/img/search.png" alt="">
<input type="text" placeholder="请输入关键词" v-model="keyword">
<img src="@/assets/img/search.png"
alt="">
<input type="text"
placeholder="请输入关键词"
v-model="keyword">
</div>
</div>
<!-- 课程筛选 -->
<div class="filter">
<div class="center-wrap" style="padding: 0;margin: 0 auto;">
<div class="center-wrap"
style="padding: 0;margin: 0 auto;">
<dl>
<dt>比赛范围</dt>
<dd v-for="(item, i) in scopes" :key="i" :class="{active: form.competitionScope == item.id}" @click="changeScope(item.id)">{{ item.name }}</dd>
<dd v-for="(item, i) in scopes"
:key="i"
:class="{active: form.competitionScope == item.id}"
@click="changeScope(item.id)">{{ item.name }}</dd>
<template v-if="form.competitionScope === 2">
<div class="select-wrap">
<span class="label">省份</span>
<el-select size="small" v-model="form.provinceId" clearable @change="getCity">
<el-option label="请选择" value=""></el-option>
<el-option
v-for="(item,index) in provinces"
<el-select size="small"
v-model="form.provinceId"
clearable
@change="getCity">
<el-option label="请选择"
value=""></el-option>
<el-option v-for="(item,index) in provinces"
:key="index"
:label="item.provinceName"
:value="item.provinceId"
></el-option>
:value="item.provinceId"></el-option>
</el-select>
</div>
<div class="select-wrap">
<span class="label">城市</span>
<el-select size="small" v-model="form.cityId" clearable @change="initData">
<el-option label="请选择" value=""></el-option>
<el-option
v-for="(item,index) in cities"
<el-select size="small"
v-model="form.cityId"
clearable
@change="initData">
<el-option label="请选择"
value=""></el-option>
<el-option v-for="(item,index) in cities"
:key="index"
:label="item.cityName"
:value="item.cityId"
></el-option>
:value="item.cityId"></el-option>
</el-select>
</div>
</template>
</dl>
<dl>
<dt>筛选排序</dt>
<dd v-for="(item, i) in sorts" :key="i" :class="{active: form.sequence == item.id}" @click="changeSort(item.id)">{{ item.name }}</dd>
<dd v-for="(item, i) in sorts"
:key="i"
:class="{active: form.sequence == item.id}"
@click="changeSort(item.id)">{{ item.name }}</dd>
</dl>
</div>
</div>
@ -54,11 +68,17 @@
<div class="list">
<template v-if="listData.length">
<ul>
<li v-for="(item,index) in listData" :key="index" :id="item.id" @click="toDetail(item)">
<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>
<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="">
<img :src="item.coverUrl || 'https://huoran.oss-cn-shenzhen.aliyuncs.com/20220623/png/1539857403162943488.png'"
alt="">
</div>
<div class="info">
<div class="title">{{ item.competitionName }}</div>
@ -86,27 +106,36 @@
</div>
</div>
<div class="right">
<el-dropdown v-if="item.playingStages && item.playingStages.length > 1" class="m-l-10" @command="e => chooseStage(e, item)">
<el-button type="primary" style="background-color: #f96d6d;border: 0;">
<el-dropdown v-if="item.playingStages && item.playingStages.length > 1"
class="m-l-10"
@command="e => chooseStage(e, item)">
<el-button type="primary"
style="background-color: #f96d6d;border: 0;">
选择竞赛<i class="el-icon-arrow-down el-icon--right"></i>
</el-button>
<el-dropdown-menu slot="dropdown">
<el-dropdown-item v-for="(stage, i) in item.playingStages" :key="i" :command="stage">进入{{ stage.stageName }}</el-dropdown-item>
<el-dropdown-item v-for="(stage, i) in item.playingStages"
:key="i"
:command="stage">进入{{ stage.stageName }}</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
<p class="status"
v-else-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}" :title="item.status == 4 ? item.stageName : statusList[item.status]"
: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">
<p class="end-text"
v-if="item.end">
距离{{ item.status == 4 ? item.endText : endList[item.status] }}还有
<em >{{ item.end }}</em>
<em>{{ item.end }}</em>
</p>
</div>
</li>
</ul>
<div class="pagination">
<el-pagination background layout="total, prev, pager, next" :total="totals"
<el-pagination background
layout="total, prev, pager, next"
:total="totals"
@current-change="handleCurrentChange"
:current-page="page">
</el-pagination>
@ -115,7 +144,8 @@
<template v-else>
<div class="empty">
<div>
<img src="@/assets/img/none.png" alt="">
<img src="@/assets/img/none.png"
alt="">
<p>暂无赛事</p>
</div>
</div>
@ -125,57 +155,95 @@
</div>
</div>
<el-dialog title="报名" :visible.sync="peopleSignupVisible" :close-on-click-modal="false" width="300px">
<el-dialog title="报名"
:visible.sync="peopleSignupVisible"
:close-on-click-modal="false"
width="300px">
<el-form class="dia-form">
<el-form-item>
<el-input placeholder="请输入4位数大赛邀请码" maxlength="4" v-model="peopleSignupForm.registrationInvitationCode"></el-input>
<el-input placeholder="请输入4位数大赛邀请码"
maxlength="4"
v-model="peopleSignupForm.registrationInvitationCode"></el-input>
</el-form-item>
</el-form>
<span slot="footer" class="dialog-footer">
<el-button size="small" type="primary" @click="peopleSignupSubmit">报名</el-button>
<el-button size="small" @click="peopleSignupVisible = false">取消</el-button>
<span slot="footer"
class="dialog-footer">
<el-button size="small"
type="primary"
@click="peopleSignupSubmit">报名</el-button>
<el-button size="small"
@click="peopleSignupVisible = false">取消</el-button>
</span>
</el-dialog>
<el-dialog title="报名" :visible.sync="enterVisible" :close-on-click-modal="false" width="300px">
<el-dialog title="报名"
:visible.sync="enterVisible"
:close-on-click-modal="false"
width="300px">
<el-form class="dia-form">
<p style="margin-bottom: 5px">请选择要加入的团队</p>
<el-form-item>
<el-select class="w-100" v-model="enterForm.teamId" filterable>
<el-option v-for="(item, i) in teams" :key="i" :label="item.teamName" :value="item.teamId"></el-option>
<el-select class="w-100"
v-model="enterForm.teamId"
filterable>
<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="请输入6位数团队邀请码" maxlength="6" v-model="enterForm.invitationCode"></el-input>
<el-input placeholder="请输入6位数团队邀请码"
maxlength="6"
v-model="enterForm.invitationCode"></el-input>
</el-form-item>
<el-form-item v-if="curItem.setup.isNeedCode">
<el-input placeholder="请输入4位数大赛邀请码" maxlength="4" v-model="enterForm.registrationInvitationCode"></el-input>
<el-input placeholder="请输入4位数大赛邀请码"
maxlength="4"
v-model="enterForm.registrationInvitationCode"></el-input>
</el-form-item>
<p class="tips">
查找不到团队点击 <el-link :underline="false" type="primary" @click="toTeam">创建团队</el-link>
查找不到团队点击 <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 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">
<el-dialog title="创建团队"
:visible.sync="teamVisible"
:close-on-click-modal="false"
width="300px">
<el-form class="dia-form">
<el-form-item>
<el-input placeholder="请输入团队名称" maxlength="10" v-model="teamForm.teamName"></el-input>
<el-input placeholder="请输入团队名称"
maxlength="10"
v-model="teamForm.teamName"></el-input>
</el-form-item>
<el-form-item>
<el-input placeholder="请输入6位数团队邀请码" maxlength="6" v-model="teamForm.invitationCode"></el-input>
<el-input placeholder="请输入6位数团队邀请码"
maxlength="6"
v-model="teamForm.invitationCode"></el-input>
</el-form-item>
<el-form-item v-if="curItem.setup.isNeedCode">
<el-input placeholder="请输入4位数大赛邀请码" maxlength="4" v-model="teamForm.registrationInvitationCode"></el-input>
<el-input placeholder="请输入4位数大赛邀请码"
maxlength="4"
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 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>
</div>
@ -189,7 +257,7 @@ import util from "@/libs/util"
export default {
name: "match",
data() {
data () {
return {
timer: null,
token: util.local.get(Setting.tokenKey),
@ -289,14 +357,14 @@ export default {
])
},
watch: {
keyword: function(val) {
keyword: function (val) {
clearTimeout(this.searchTimer);
this.searchTimer = setTimeout(() => {
this.initData();
}, 500);
}
},
mounted() {
mounted () {
this.getProvince()
this.getData()
this.$once('hook:beforeDestroy', this.clearTimer)
@ -305,7 +373,7 @@ export default {
...mapMutations('match', [
'SET_SOURCE'
]),
getList() {
getList () {
this.clearTimer()
const { form } = this
const scope = form.competitionScope
@ -346,7 +414,7 @@ export default {
})
},
//
handleStatus() {
handleStatus () {
this.listData.map(item => {
if (item.signUpStartTime && item.signUpEndTime && item.playStartTime && item.playEndTime) {
let total = ''
@ -377,7 +445,8 @@ export default {
if (stages) {
item.playingStages = []
item.whetherToSignUp === 0 && stages.forEach(e => {
if (now >= new Date(e.startTime) && now <= new Date(e.endTime) && e.method !== 2) item.playingStages.push(e)
if (now >= new Date(e.startTime) && now <= new Date(e.endTime) && (e.method !== 2 || this.offlineCanEntry(e))) item.playingStages.push(e)
})
for (const i in stages) {
const e = stages[i]
@ -389,7 +458,7 @@ export default {
total = startTime - now
break
} 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) //
if ((item.whetherToSignUp === 0 || !util.local.get(Setting.tokenKey)) && (e.method !== 2 || this.offlineCanEntry(e))) this.$set(item, 'stageName', e.count ? '已提交' : '进入' + e.stageName) //
this.$set(item, 'endText', '阶段结束')
curStage = e
total = endTime - now
@ -437,28 +506,28 @@ export default {
})
},
//
clearTimer() {
clearTimer () {
this.timerList.forEach(n => {
clearInterval(n)
})
this.timerList = []
},
getData() {
getData () {
this.loadIns = Loading.service()
this.getList()
},
initData() {
initData () {
this.page = 1
this.getData()
},
//
getProvince() {
getProvince () {
this.$get(this.api.queryProvince).then(({ list }) => {
this.provinces = list
}).catch(res => {})
}).catch(res => { })
},
//
getCity() {
getCity () {
const { form } = this
form.cityId = ''
form.provinceId ?
@ -467,29 +536,29 @@ export default {
}).then(({ list }) => {
this.cities = list
this.initData()
}).catch(res => {}) :
}).catch(res => { }) :
this.initData()
},
//
changeScope(type) {
changeScope (type) {
this.form.competitionScope = type
this.initData()
},
//
changeSort(type) {
changeSort (type) {
this.form.sequence = type
this.initData()
},
toDetail(item) {
toDetail (item) {
this.$router.push(`/touristMatch/details?id=${item.id}`);
},
handleCurrentChange(val) {
handleCurrentChange (val) {
this.page = val;
this.getData();
},
//
peopleSignupSubmit() {
peopleSignupSubmit () {
this.$post(this.api.addCompetitionRegistration, {
competitionId: this.curRow.id,
registrationInvitationCode: this.peopleSignupForm.registrationInvitationCode
@ -497,10 +566,10 @@ export default {
this.peopleSignupVisible = false
this.getData()
this.$message.success('报名成功')
}).catch(res => {})
}).catch(res => { })
},
//
enterSubmit() {
enterSubmit () {
const form = this.enterForm
if (!form.teamId) return util.errorMsg('请选择团队')
if (!form.invitationCode) return util.errorMsg('请输入团队邀请码')
@ -509,12 +578,16 @@ export default {
this.enterVisible = false
this.getData()
util.successMsg('报名成功!')
}).catch(res => {})
}).catch(res => { })
},
// 线
offlineCanEntry (stage) {
return stage.method === 2 && stage.competitionStageContentSetting && !!(stage.competitionStageContentSetting.systemLink || stage.competitionStageContentSetting.whetherToUploadFiles)
},
//
toTeam() {
toTeam () {
this.teamForm = {
competitionId: this.curItem.id,
teamName: '',
@ -525,16 +598,16 @@ export default {
this.teamVisible = true
},
//
getTeam() {
getTeam () {
this.$get(this.api.searchTeam, {
teamName: '',
competitionId: this.curItem.id
}).then(({ teamList }) => {
this.teams = teamList
}).catch(res => {})
}).catch(res => { })
},
//
teamSubmit() {
teamSubmit () {
const form = this.teamForm
if (!form.teamName) return util.errorMsg('请输入团队名称')
if (this.teamNameRepeat) return util.errorMsg('团队名称重复,请重新输入')
@ -545,15 +618,15 @@ export default {
this.enterVisible = false
this.getData()
util.successMsg('报名成功!')
}).catch(res => {})
}).catch(res => { })
},
//
chooseStage(e, item) {
chooseStage (e, item) {
item.curStage = e
this.signup(item)
},
//
getAllow(item) {
getAllow (item) {
//
if (item.rule === 1) {
this.$post(this.api.allowedParticipateCompetition, {
@ -563,13 +636,13 @@ export default {
teamId: item.teamId,
}).then(res => {
this.toSub()
}).catch(res => {})
}).catch(res => { })
} else {
this.toSub()
}
},
//
signup(item) {
signup (item) {
const { status, id } = item
const { competitionType } = item.setup
//
@ -587,7 +660,7 @@ export default {
teamId: item.teamId,
}).then(res => {
this.getAllow(item)
}).catch(res => {})
}).catch(res => { })
} else {
this.getAllow(item)
}
@ -613,7 +686,7 @@ export default {
}).then(res => {
this.getData()
this.$message.success('报名成功')
}).catch(res => {})
}).catch(res => { })
}
}
} else if (status == 1) {
@ -624,8 +697,8 @@ export default {
this.$post(`${this.api.cancelRegistration}?competitionId=${item.id}`).then(res => {
this.getData()
this.$message.success('取消报名成功')
}).catch(res => {})
}).catch(() => {})
}).catch(res => { })
}).catch(() => { })
}
} else {
this.$confirm('请先登录,是否直接前往登录?', "提示", {
@ -633,11 +706,11 @@ export default {
}).then(() => {
this.SET_SOURCE(item.id)
this.$router.push('/login')
}).catch(() => {})
}).catch(() => { })
}
},
// python
toPython() {
toPython () {
const form = this.curItem.curStage
let token = util.local.get(Setting.tokenKey);
util.cookies.set('assessmentId', '', -1)
@ -661,7 +734,7 @@ export default {
`${location.origin}/pyTrials`
},
//
toSub() {
toSub () {
const form = this.curItem
const { systemId, projectId, cid, stageId } = form.curStage
const competitionId = form.id
@ -687,9 +760,8 @@ export default {
position: relative;
padding: 100px 0 130px;
text-align: center;
background: url(../../../assets/img/match-bg4.png) (27px 10px)/auto no-repeat,
url(../../../assets/img/match-bg5.png) (98% 20px)/auto no-repeat,
url(../../../assets/img/match-bg3.png) 0 0/100% 100% no-repeat;
background: url(../../../assets/img/match-bg4.png) (27px 10px) / auto no-repeat,
url(../../../assets/img/match-bg5.png) (98% 20px) / auto no-repeat, url(../../../assets/img/match-bg3.png) 0 0/100% 100% no-repeat;
h6 {
margin-bottom: 25px;
font-size: 26px;
@ -717,9 +789,9 @@ export default {
border-radius: 4px;
}
}
.main{
background: url(../../../assets/img/match-bg1.png) (0px 95px)/auto auto no-repeat,
url(../../../assets/img/match-bg2.png) (98% bottom)/auto auto no-repeat;
.main {
background: url(../../../assets/img/match-bg1.png) (0px 95px) / auto auto no-repeat,
url(../../../assets/img/match-bg2.png) (98% bottom) / auto auto no-repeat;
.filter {
width: 100%;
background-color: #fff;
@ -760,9 +832,9 @@ export default {
.list-inner {
display: flex;
justify-content: center;
align-items:flex-start;
align-items: flex-start;
}
.nav{
.nav {
width: 156px;
text-align: right;
overflow: hidden;
@ -821,11 +893,11 @@ export default {
font-size: 14px;
color: #fff;
white-space: nowrap;
background-color: #52C41A;
background-color: #52c41a;
border-radius: 4px;
@include ellipsis();
&.wait {
background-color: #FAAD14;
background-color: #faad14;
}
&.signing {
@ -833,7 +905,7 @@ export default {
}
&.signed {
background-color: #52C41A;
background-color: #52c41a;
}
&.playing {
background-color: #f96d6d;
@ -852,7 +924,7 @@ export default {
cursor: pointer;
&:hover {
opacity: .9;
opacity: 0.9;
}
&.disabled {
@ -863,7 +935,7 @@ export default {
.end-text {
margin-top: 10px;
color: rgba(0, 0, 0, .65);
color: rgba(0, 0, 0, 0.65);
font-size: 12px;
white-space: nowrap;
@ -911,7 +983,7 @@ export default {
margin-bottom: 10px;
font-size: 20px;
font-weight: 500;
color: #0B1D30;
color: #0b1d30;
line-height: 1;
}
.metas {
@ -927,7 +999,8 @@ export default {
}
}
.label, .val {
.label,
.val {
font-size: 14px;
color: #666;
white-space: nowrap;

@ -32,7 +32,7 @@ if (isPro) {
uploadURL = `http://121.37.12.51/`
host = "http://121.37.12.51/"; // 测试服
// host = 'https://www.occupationlab.com/' // 正式服
// host = "http://192.168.31.217:9000/"; // 榕
host = "http://192.168.31.217:9000/"; // 榕
// host = "http://192.168.31.51:9000/"; // 赓
} else if (isSq) {
zcPath = `10.20.100.204:8883`

Loading…
Cancel
Save