xiatian il y a 5 ans
Parent
commit
97fc62af8a
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      src/modules/examwork/view/notice.vue

+ 2 - 2
src/modules/examwork/view/notice.vue

@@ -634,7 +634,7 @@ export default {
     examSelectChange(row) {
       this.tempSelectedExam = row;
       var selectedExams = this.selectedExam;
-      if (selectedExams.length >= 10) {
+      if (selectedExams.length > 10) {
         this.warn("一次最多只能选择10个考试批次!");
         return;
       }
@@ -651,7 +651,7 @@ export default {
     markSelectChange(row) {
       this.tempSelectedMark = row;
       var selectedMarks = this.selectedMark;
-      if (selectedMarks.length >= 10) {
+      if (selectedMarks.length > 10) {
         this.warn("一次最多只能选择10个阅卷工作!");
         return;
       }