|
@@ -6638,15 +6638,15 @@ export default {
|
|
|
if (
|
|
|
f[g].ttype == 2 &&
|
|
|
this.tcid &&
|
|
|
- this.arrayToArray(f[g].classid.split(","), this.tcid.split(",")).length == 0
|
|
|
+ this.arrayToArray((f[g].classid ? f[g].classid.split(",") : []), this.tcid.split(",")).length == 0
|
|
|
) {
|
|
|
continue;
|
|
|
}
|
|
|
if (gA == f[g].group && f[g].tool == i && (this.arrayToArray(
|
|
|
- f[g].classid.split(","),
|
|
|
+ (f[g].classid ? f[g].classid.split(",") : []),
|
|
|
this.tcid.split(",")
|
|
|
).length !== 0 || this.arrayToArray(
|
|
|
- f[g].classid.split(","),
|
|
|
+ (f[g].classid ? f[g].classid.split(",") : []),
|
|
|
this.classId ? this.classId.split(",") : []
|
|
|
).length !== 0 || (!this.tcid && this.tType == '1') || (this.courseDetail.juri === '') || f[g].ttype == 1)) {
|
|
|
this.groupStudent[i][gA].push(f[g]);
|