大赛训练产品调整

This commit is contained in:
fan 2024-03-01 14:37:54 +08:00
parent 77713154d0
commit c1376ddf8f
3 changed files with 8 additions and 7 deletions

View File

@ -103,7 +103,11 @@ export default {
this.taskData = data;
this.taskList = [];
this.eachTask(this.taskList, this.taskData);
this.nowKey = 0;
if (this.$route.query.nowKey && this.$route.query.nowKey >= this.taskList.length) {
this.nowKey = this.taskList.length - 1 || 0;
} else {
this.nowKey = this.$route.query.nowKey || 0;
}
this.nowData = this.taskList[this.nowKey];
// console.log(this.taskData, this.taskList, this.nowData, '===', data);
}).catch(() => this.$message.error('加载数据失败!'));

View File

@ -47,12 +47,6 @@ export default {
const crules = {
name: [
{ required: true, message: '请输入单元描述', trigger: 'blur' }
],
content: [
{ required: true, message: '请输入作业程序', trigger: 'blur' }
],
criteria: [
{ required: true, message: '请输入评分标准', trigger: 'blur' }
]
};
return crules;

View File

@ -232,6 +232,9 @@ export default {
}
} else if (this.projectDevice) {
this.logout();
} else if (this.$route.query.nowKey) {
const query = { paperId: this.$route.query.paperId, moduleId: this.$route.query.moduleId, nowKey: +this.$route.query.nowKey + 1 };
this.$router.replace({ path:'/contest/detail', query });
} else {
this.$router.go(-1);
}