|
@@ -493,7 +493,7 @@ export default {
|
|
|
);
|
|
|
if (errorStudents.length) {
|
|
|
const names = errorStudents.map((item) => item.studentName).join();
|
|
|
- this.$message.error(`考生【${names}】已经生成阅卷任务,禁止删除!`);
|
|
|
+ this.$message.error(`考生【${names}】已经生成评卷任务,禁止删除!`);
|
|
|
return;
|
|
|
}
|
|
|
|
|
@@ -518,13 +518,13 @@ export default {
|
|
|
},
|
|
|
async toDelete(row) {
|
|
|
// "scanStatus": true, //是否扫描
|
|
|
- // "markTaskStatus": true // 是否生成阅卷任务
|
|
|
+ // "markTaskStatus": true // 是否生成评卷任务
|
|
|
const students = await getExamStudentStatus([row.id]);
|
|
|
const student = students[0];
|
|
|
|
|
|
if (student && student.scanStatus && student.markTaskStatus) {
|
|
|
this.$message.error(
|
|
|
- `考生【${row.studentName}】已经生成阅卷任务,禁止删除!`
|
|
|
+ `考生【${row.studentName}】已经生成评卷任务,禁止删除!`
|
|
|
);
|
|
|
return;
|
|
|
}
|