|
|
|
@ -23,7 +23,7 @@ |
|
|
|
|
<em>{{ end }}</em> |
|
|
|
|
</p> |
|
|
|
|
<div class="m-l-20"> |
|
|
|
|
<p v-if="status && status !== 5" |
|
|
|
|
<p v-if="status" |
|
|
|
|
:class="['sign-status', {signing: status == 2,signed: status == 1,playing: status == 4}]">{{ form.competitionRegistration ? '已报名' : '未报名' }}</p> |
|
|
|
|
<el-dropdown v-if="playingStages.length > 1" |
|
|
|
|
@command="chooseStage"> |
|
|
|
@ -690,7 +690,7 @@ |
|
|
|
|
<script> |
|
|
|
|
import { mapState, mapMutations } from "vuex"; |
|
|
|
|
import breadcrumb from '@/components/breadcrumb' |
|
|
|
|
import util from '@/libs/util' |
|
|
|
|
import Util from '@/libs/util' |
|
|
|
|
import Setting from "@/setting" |
|
|
|
|
import Const from '@/const/match' |
|
|
|
|
import OSS from 'ali-oss' |
|
|
|
@ -701,9 +701,9 @@ export default { |
|
|
|
|
data () { |
|
|
|
|
return { |
|
|
|
|
headers: { |
|
|
|
|
token: util.local.get(Setting.tokenKey) |
|
|
|
|
token: Util.local.get(Setting.tokenKey) |
|
|
|
|
}, |
|
|
|
|
token: util.local.get(Setting.tokenKey), |
|
|
|
|
token: Util.local.get(Setting.tokenKey), |
|
|
|
|
id: +this.$route.query.id, |
|
|
|
|
end: '', |
|
|
|
|
status: '', |
|
|
|
@ -819,6 +819,7 @@ export default { |
|
|
|
|
client: null, |
|
|
|
|
uploading: false, |
|
|
|
|
uploadProgress: 0, |
|
|
|
|
now: '' |
|
|
|
|
}; |
|
|
|
|
}, |
|
|
|
|
computed: { |
|
|
|
@ -851,13 +852,13 @@ export default { |
|
|
|
|
]), |
|
|
|
|
getData () { // 获取竞赛信息 |
|
|
|
|
clearInterval(this.timer) |
|
|
|
|
this.$post(`${this.api.getCompetition}?competitionId=${this.id}`).then(({ competition }) => { |
|
|
|
|
this.$post(`${this.api.getCompetition}?competitionId=${this.id}`).then(async ({ competition }) => { |
|
|
|
|
const list = competition.competitionAnnexList |
|
|
|
|
// 附件 |
|
|
|
|
if (list) { |
|
|
|
|
list.map(e => { |
|
|
|
|
const { filePath } = e |
|
|
|
|
e.canPreview = util.canPreview(filePath.substr(filePath.lastIndexOf('.') + 1)) |
|
|
|
|
e.canPreview = Util.canPreview(filePath.substr(filePath.lastIndexOf('.') + 1)) |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -891,8 +892,13 @@ export default { |
|
|
|
|
} |
|
|
|
|
this.$refs.breadcrumb.update('全部赛事/' + competition.name) |
|
|
|
|
|
|
|
|
|
const res = await this.$get(this.api.getCurrentTime) |
|
|
|
|
this.now = new Date(res.currentTime) |
|
|
|
|
this.handleStatus() |
|
|
|
|
this.timer = setInterval(this.handleStatus, 1000) |
|
|
|
|
this.timer = setInterval(() => { |
|
|
|
|
this.now = new Date(this.now.setSeconds(this.now.getSeconds() + 1)) |
|
|
|
|
this.handleStatus() |
|
|
|
|
}, 1000) |
|
|
|
|
}).catch(err => { }) |
|
|
|
|
}, |
|
|
|
|
// 定时处理时间及状态 |
|
|
|
@ -905,7 +911,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)) // 比赛结束时间 |
|
|
|
|
const now = new Date() |
|
|
|
|
const { now } = this |
|
|
|
|
if (now < signUpStartTime) { // 报名没开始 |
|
|
|
|
status = 0 |
|
|
|
|
total = signUpStartTime - now |
|
|
|
@ -1061,7 +1067,7 @@ export default { |
|
|
|
|
}).then(res => { |
|
|
|
|
this.editing = false |
|
|
|
|
this.getInfo() |
|
|
|
|
showMsg && util.successMsg('保存成功') |
|
|
|
|
showMsg && Util.successMsg('保存成功') |
|
|
|
|
}).catch(res => { }) |
|
|
|
|
} else { |
|
|
|
|
this.editing = !this.editing |
|
|
|
@ -1088,11 +1094,11 @@ export default { |
|
|
|
|
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) |
|
|
|
|
window.open((Util.isDoc(suffix) ? 'https://view.officeapps.live.com/op/view.aspx?src=' : '') + item.filePath) |
|
|
|
|
}, |
|
|
|
|
// 下载附件 |
|
|
|
|
download (item) { |
|
|
|
|
util.downloadFile(item.fileName, item.filePath) |
|
|
|
|
Util.downloadFile(item.fileName, item.filePath) |
|
|
|
|
}, |
|
|
|
|
// tab切换 前三个滚动,后两个切换 |
|
|
|
|
typeChange () { |
|
|
|
@ -1169,7 +1175,7 @@ export default { |
|
|
|
|
type: 'warning' |
|
|
|
|
}).then(() => { |
|
|
|
|
this.$post(`${this.api.deleteAnAdvisor}?id=${row.id}`).then(res => { |
|
|
|
|
util.successMsg('删除成功') |
|
|
|
|
Util.successMsg('删除成功') |
|
|
|
|
this.getInfo() |
|
|
|
|
}).catch(res => { }) |
|
|
|
|
}).catch(() => { }) |
|
|
|
@ -1179,7 +1185,7 @@ export default { |
|
|
|
|
}, |
|
|
|
|
// 添加指导老师 |
|
|
|
|
addAdvisor () { |
|
|
|
|
if (this.info.teamInstructors.length > 4) return util.errorMsg('指导老师仅限添加5个!') |
|
|
|
|
if (this.info.teamInstructors.length > 4) return Util.errorMsg('指导老师仅限添加5个!') |
|
|
|
|
this.info.teamInstructors.push(JSON.parse(JSON.stringify(this.originIns))) |
|
|
|
|
}, |
|
|
|
|
// 编辑导老师 |
|
|
|
@ -1188,9 +1194,9 @@ export default { |
|
|
|
|
}, |
|
|
|
|
// 提交指导老师 |
|
|
|
|
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('请输入正确手机号格式') |
|
|
|
|
if (phone && !/^1[3456789]\d{9}$/.test(phone)) return Util.errorMsg('请输入正确手机号格式') |
|
|
|
|
this.$post(this.api.addAnAdvisor, { |
|
|
|
|
name: row.name, |
|
|
|
|
competitionId: this.id, |
|
|
|
@ -1199,7 +1205,7 @@ export default { |
|
|
|
|
phone: row.phone, |
|
|
|
|
position: row.position, |
|
|
|
|
}).then(res => { |
|
|
|
|
util.successMsg((row.id ? '修改' : '新增') + '成功') |
|
|
|
|
Util.successMsg((row.id ? '修改' : '新增') + '成功') |
|
|
|
|
this.getInfo() |
|
|
|
|
}).catch(res => { }) |
|
|
|
|
}, |
|
|
|
@ -1210,7 +1216,7 @@ export default { |
|
|
|
|
let start = 0 |
|
|
|
|
for (const e of this.form.competitionStage) { |
|
|
|
|
if (now >= new Date(e.startTime) && now <= new Date(e.endTime)) { |
|
|
|
|
util.errorMsg('比赛已经开始,无法转让队长!') |
|
|
|
|
Util.errorMsg('比赛已经开始,无法转让队长!') |
|
|
|
|
start = 1 |
|
|
|
|
break |
|
|
|
|
} |
|
|
|
@ -1219,13 +1225,13 @@ export default { |
|
|
|
|
}, |
|
|
|
|
// 转让队长提交 |
|
|
|
|
transferSubmit () { |
|
|
|
|
if (!this.checkedPlayer) return util.errorMsg('请选择成员') |
|
|
|
|
if (!this.checkedPlayer) return Util.errorMsg('请选择成员') |
|
|
|
|
this.$post(this.api.captainOfTransfer, { |
|
|
|
|
captainId: this.info.caption.teamId, |
|
|
|
|
playerId: this.checkedPlayer |
|
|
|
|
}).then(res => { |
|
|
|
|
this.checkedPlayer = '' |
|
|
|
|
util.successMsg('转让成功') |
|
|
|
|
Util.successMsg('转让成功') |
|
|
|
|
this.transferVisible = false |
|
|
|
|
this.getInfo() |
|
|
|
|
}).catch(res => { }) |
|
|
|
@ -1237,7 +1243,7 @@ export default { |
|
|
|
|
let start = 0 |
|
|
|
|
for (const e of this.form.competitionStage) { |
|
|
|
|
if (now >= new Date(e.startTime) && now <= new Date(e.endTime)) { |
|
|
|
|
util.errorMsg('比赛已经开始,无法踢出成员!') |
|
|
|
|
Util.errorMsg('比赛已经开始,无法踢出成员!') |
|
|
|
|
start = 1 |
|
|
|
|
break |
|
|
|
|
} |
|
|
|
@ -1257,7 +1263,7 @@ export default { |
|
|
|
|
type: 'warning' |
|
|
|
|
}).then(() => { |
|
|
|
|
this.$post(`${this.api.removeTheLine}?teamId=${this.info.teamId}&competitionId=${this.id}&accountId=${row.accountId}`).then(res => { |
|
|
|
|
util.successMsg('移除成功') |
|
|
|
|
Util.successMsg('移除成功') |
|
|
|
|
this.getInfo() |
|
|
|
|
}).catch(res => { }) |
|
|
|
|
}).catch(() => { }) |
|
|
|
@ -1270,7 +1276,7 @@ export default { |
|
|
|
|
// 该阶段已经开始比赛则不能修改 |
|
|
|
|
const now = new Date() |
|
|
|
|
if (now >= new Date(item.startTime) && now <= new Date(item.endTime)) { |
|
|
|
|
return util.errorMsg('该阶段比赛已经开始,无法修改允许参赛人员!') |
|
|
|
|
return Util.errorMsg('该阶段比赛已经开始,无法修改允许参赛人员!') |
|
|
|
|
} else { |
|
|
|
|
this.$confirm('确定要移除该成员吗?', '提示', { |
|
|
|
|
type: 'warning' |
|
|
|
@ -1281,7 +1287,7 @@ export default { |
|
|
|
|
stageId: stage.stageId, |
|
|
|
|
teamId: this.info.teamId |
|
|
|
|
}).then(res => { |
|
|
|
|
util.successMsg('移除成功') |
|
|
|
|
Util.successMsg('移除成功') |
|
|
|
|
this.getInfo() |
|
|
|
|
}).catch(res => { }) |
|
|
|
|
}).catch(() => { }) |
|
|
|
@ -1295,7 +1301,7 @@ export default { |
|
|
|
|
// 该阶段已经开始比赛则不能修改 |
|
|
|
|
const now = new Date() |
|
|
|
|
if (now >= new Date(item.startTime) && now <= new Date(item.endTime)) { |
|
|
|
|
return util.errorMsg('该阶段比赛已经开始,无法修改允许参赛人员!') |
|
|
|
|
return Util.errorMsg('该阶段比赛已经开始,无法修改允许参赛人员!') |
|
|
|
|
} else { |
|
|
|
|
const { teamLimit, stages, teamDetail } = this.info |
|
|
|
|
// teamLimit=true,则每个成员只能参加一个阶段的比赛,要获取stages里返回的所有participantAccountIds(参赛人员的accountId),然后不显示这些参赛人员 |
|
|
|
@ -1324,9 +1330,9 @@ export default { |
|
|
|
|
// 选择参赛人员提交 |
|
|
|
|
chooseSubmit () { |
|
|
|
|
const accountIds = this.checkedMembers |
|
|
|
|
if (!accountIds.length) return util.errorMsg('请选择参赛成员!') |
|
|
|
|
if (!accountIds.length) return Util.errorMsg('请选择参赛成员!') |
|
|
|
|
const limit = this.curRow.teamNumLimit // 参赛人数限制 |
|
|
|
|
if (limit && accountIds.length > limit) return util.errorMsg(`请选择${limit}个以下参赛成员!`) // 选择的参赛人员个数不能大于参赛人数限制 |
|
|
|
|
if (limit && accountIds.length > limit) return Util.errorMsg(`请选择${limit}个以下参赛成员!`) // 选择的参赛人员个数不能大于参赛人数限制 |
|
|
|
|
this.$post(this.api.stageSelectParticipants, { |
|
|
|
|
accountIds, |
|
|
|
|
competitionId: this.id, |
|
|
|
@ -1334,7 +1340,7 @@ export default { |
|
|
|
|
teamId: this.info.teamId |
|
|
|
|
}).then(res => { |
|
|
|
|
this.checkedMembers = [] |
|
|
|
|
util.successMsg('修改成功') |
|
|
|
|
Util.successMsg('修改成功') |
|
|
|
|
this.getInfo() |
|
|
|
|
this.chooseVisible = false |
|
|
|
|
}).catch(res => { }) |
|
|
|
@ -1382,14 +1388,14 @@ export default { |
|
|
|
|
// 团队报名提交 |
|
|
|
|
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('请输入大赛邀请码') |
|
|
|
|
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(res => { |
|
|
|
|
this.status = 1 |
|
|
|
|
this.enterVisible = false |
|
|
|
|
this.getData() |
|
|
|
|
util.successMsg('报名成功!') |
|
|
|
|
Util.successMsg('报名成功!') |
|
|
|
|
}).catch(res => { }) |
|
|
|
|
}, |
|
|
|
|
// 团队关闭 |
|
|
|
@ -1420,15 +1426,15 @@ export default { |
|
|
|
|
// 团队提交 |
|
|
|
|
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('请输入大赛邀请码') |
|
|
|
|
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('报名成功!') |
|
|
|
|
Util.successMsg('报名成功!') |
|
|
|
|
}).catch(res => { }) |
|
|
|
|
}, |
|
|
|
|
// 团队关闭 |
|
|
|
@ -1448,7 +1454,7 @@ export default { |
|
|
|
|
// 附件上传前 |
|
|
|
|
beforeUpload (file) { |
|
|
|
|
const oversize = file.size / 1024 / 1024 < 1000 |
|
|
|
|
if (!oversize) util.warningMsg('请上传小于1GB的附件!') |
|
|
|
|
if (!oversize) Util.warningMsg('请上传小于1GB的附件!') |
|
|
|
|
if (oversize) { |
|
|
|
|
return true |
|
|
|
|
} else { |
|
|
|
@ -1466,7 +1472,7 @@ export default { |
|
|
|
|
this.uploadProgress = 0 |
|
|
|
|
this.uploading = true |
|
|
|
|
// 先传到阿里云oss,再把url传给后端 |
|
|
|
|
const { name } = await this.client.multipartUpload(file.name, file, { |
|
|
|
|
const { name } = await this.client.multipartUpload(Date.now() + '.' + Util.getFileExt(file.name), file, { |
|
|
|
|
progress: this.handleProgress |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
@ -1480,7 +1486,7 @@ export default { |
|
|
|
|
// 把上传成功后的url存进文件表 |
|
|
|
|
const res = await this.$post(this.api.cCompetitionStageFileSave, { |
|
|
|
|
competitionId: this.id, |
|
|
|
|
fileFormat: util.getFileExt(file.name), |
|
|
|
|
fileFormat: Util.getFileExt(file.name), |
|
|
|
|
fileName: file.name, |
|
|
|
|
filePath: url, |
|
|
|
|
fileSize: file.size, |
|
|
|
@ -1488,7 +1494,7 @@ export default { |
|
|
|
|
teamId: this.form.competitionRegistration.teamId |
|
|
|
|
}) |
|
|
|
|
this.curFileId = res.message |
|
|
|
|
util.successMsg(`上传成功!`); |
|
|
|
|
Util.successMsg(`上传成功!`); |
|
|
|
|
} catch (error) { } |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
@ -1503,7 +1509,7 @@ export default { |
|
|
|
|
return this.$confirm(`确定移除 ${file.name}?`); |
|
|
|
|
}, |
|
|
|
|
handleExceed (files, fileList) { |
|
|
|
|
util.warningMsg(`当前限制选择 1 个文件,如需更换,请删除上一个文件再重新选择!`); |
|
|
|
|
Util.warningMsg(`当前限制选择 1 个文件,如需更换,请删除上一个文件再重新选择!`); |
|
|
|
|
}, |
|
|
|
|
// 删除文件表里的文件 |
|
|
|
|
handleRemove (file) { |
|
|
|
@ -1552,7 +1558,7 @@ export default { |
|
|
|
|
signup () { |
|
|
|
|
const { status, form } = this |
|
|
|
|
// 如果登录了 |
|
|
|
|
if (util.local.get(Setting.tokenKey)) { |
|
|
|
|
if (Util.local.get(Setting.tokenKey)) { |
|
|
|
|
const { competitionType } = form.completeCompetitionSetup |
|
|
|
|
if (status == 4) { // 进入比赛 |
|
|
|
|
// 线下(规则见handleStatus方法) |
|
|
|
@ -1587,8 +1593,8 @@ export default { |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
// 参加过比赛不让参加 |
|
|
|
|
if (this.curStage && this.curStage.count) return util.errorMsg('您已经参加过该阶段竞赛!') |
|
|
|
|
if (form.competitionRegistration.isDisable === 1) return util.errorMsg('当前用户已被禁赛,如有疑问,请联系平台管理员。') // 被禁用的用户不能进入大赛 |
|
|
|
|
if (this.curStage && this.curStage.count) return Util.errorMsg('您已经参加过该阶段竞赛!') |
|
|
|
|
if (form.competitionRegistration.isDisable === 1) return Util.errorMsg('当前用户已被禁赛,如有疑问,请联系平台管理员。') // 被禁用的用户不能进入大赛 |
|
|
|
|
// 团队赛,则判断是否为参赛人员 |
|
|
|
|
if (competitionType) { |
|
|
|
|
this.$post(this.api.isParticipant, { |
|
|
|
@ -1647,26 +1653,26 @@ export default { |
|
|
|
|
// 进入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) |
|
|
|
|
util.cookies.set('curriculumName', encodeURIComponent(form.systemName)) |
|
|
|
|
util.cookies.set('systemId', form.systemId) |
|
|
|
|
util.cookies.set('isSubmit', '', -1) |
|
|
|
|
util.cookies.set('className', '', -1) |
|
|
|
|
util.cookies.set('competitionId', this.form.id) |
|
|
|
|
util.cookies.set('stageId', form.stageId) |
|
|
|
|
util.cookies.set('teamId', this.form.competitionRegistration.teamId) |
|
|
|
|
util.cookies.set('stopTime', form.endTime) |
|
|
|
|
util.cookies.set('resultsDetails', form.resultsDetails) |
|
|
|
|
util.cookies.set('resultAnnouncementTime', form.resultAnnouncementTime) |
|
|
|
|
util.cookies.set('mallId', form.mallId) |
|
|
|
|
util.cookies.set('fromManager', '', -1) |
|
|
|
|
util.cookies.set('language', '', -1) |
|
|
|
|
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) |
|
|
|
|
Util.cookies.set('curriculumName', encodeURIComponent(form.systemName)) |
|
|
|
|
Util.cookies.set('systemId', form.systemId) |
|
|
|
|
Util.cookies.set('isSubmit', '', -1) |
|
|
|
|
Util.cookies.set('className', '', -1) |
|
|
|
|
Util.cookies.set('competitionId', this.form.id) |
|
|
|
|
Util.cookies.set('stageId', form.stageId) |
|
|
|
|
Util.cookies.set('teamId', this.form.competitionRegistration.teamId) |
|
|
|
|
Util.cookies.set('stopTime', form.endTime) |
|
|
|
|
Util.cookies.set('resultsDetails', form.resultsDetails) |
|
|
|
|
Util.cookies.set('resultAnnouncementTime', form.resultAnnouncementTime) |
|
|
|
|
Util.cookies.set('mallId', form.mallId) |
|
|
|
|
Util.cookies.set('fromManager', '', -1) |
|
|
|
|
Util.cookies.set('language', '', -1) |
|
|
|
|
// 8个python子系统都跳这个地址,子系统会通过cookie里的systemId识别展示哪套系统 |
|
|
|
|
location.href = process.env.NODE_ENV === 'development' ? |
|
|
|
|
`http://${location.hostname}:8085/#/` : |
|
|
|
@ -1680,7 +1686,7 @@ export default { |
|
|
|
|
const { systemId, projectId, cid, stageId, startTime, endTime, mallId } = this.curStage |
|
|
|
|
const competitionId = form.id |
|
|
|
|
const teamId = form.competitionRegistration.teamId |
|
|
|
|
let token = util.local.get(Setting.tokenKey); |
|
|
|
|
let token = Util.local.get(Setting.tokenKey); |
|
|
|
|
if (systemId == 11) { |
|
|
|
|
// 银行系统 |
|
|
|
|
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` |
|
|
|
|