This commit is contained in:
liuyuan
2025-08-19 10:07:25 +08:00
parent 437994f38b
commit ff0863c0b6
12 changed files with 223 additions and 135 deletions

View File

@@ -124,9 +124,9 @@
var max;
var str=''
if (this.thisClass.title.includes("精英")) {
max=Math.ceil(this.students.length * 0.2);
max=Math.round(this.students.length * 0.2);
} else {
max=Math.ceil(this.students.length * 0.1);
max=Math.round(this.students.length * 0.1);
}