竞赛文件上传

alioss
yujialong 1 year ago
parent 5be4e2f204
commit 60b86efb83
  1. 2
      src/api/index.js
  2. 297
      src/pages/match/details/index.vue
  3. 145
      src/pages/match/list/index.vue
  4. 14
      src/pages/station/list/index.vue
  5. 1447
      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,99 +874,105 @@ 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(() => {
const now = new Date()
if (now < signUpStartTime) { //
status = 0
total = signUpStartTime - now
} else if (now > signUpStartTime && now < signUpEndTime) { //
// 12()
status = this.token ?
(form.competitionRegistration ?
1 :
2) :
2
total = signUpEndTime - now
} else if (now > signUpEndTime && now < playStartTime) { // ,
status = 3
total = playStartTime - now
} else if (now > playStartTime && now < playEndTime) { //
//
if (form.releaseType) {
//
let curStage = null
const stages = form.competitionStage
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)
})
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.method !== 2 || this.isLink(e))) { //
if (e.method !== 2) {
if (form.competitionRegistration) { //
this.statusList[4] = e.count ? '已提交' : '进入' + e.stageName
curStage = e
} else if (!this.token) {
this.statusList[4] = '进入' + e.stageName
curStage = e
}
} else {
// this.timer = setInterval(() => {
const now = new Date()
if (now < signUpStartTime) { //
status = 0
total = signUpStartTime - now
} else if (now > signUpStartTime && now < signUpEndTime) { //
// 12()
status = this.token ?
(form.competitionRegistration ?
1 :
2) :
2
total = signUpEndTime - now
} else if (now > signUpEndTime && now < playStartTime) { // ,
status = 3
total = playStartTime - now
} else if (now > playStartTime && now < playEndTime) { //
//
if (form.releaseType) {
//
let curStage = null
const stages = form.competitionStage
if (stages) {
this.playingStages = []
form.competitionRegistration && stages.forEach(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) { //
// 线
if (e.method !== 2) {
if (form.competitionRegistration) { //
this.statusList[4] = e.count ? '已提交' : '进入' + e.stageName
curStage = e
} else if (!this.token) {
this.statusList[4] = '进入' + e.stageName
curStage = e
}
endText = '阶段结束'
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
} 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 = '阶段结束'
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
}
this.curStage = curStage
} else { //
total = playEndTime - now
this.endList[4] = endText
}
status = 4
} else if (now > playEndTime) { //
status = 5
}
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 (this.status === 5) { //
clearInterval(this.timer)
this.curStage = curStage
} else { //
total = playEndTime - now
}
}, 1000)
status = 4
} else if (now > playEndTime) { //
status = 5
}
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 (this.status === 5) { //
clearInterval(this.timer)
}
// }, 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: {

File diff suppressed because it is too large Load Diff

@ -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