|
@@ -1411,7 +1411,8 @@ export default {
|
|
|
this.remoteLoading = false
|
|
|
let result = res.data
|
|
|
if (result.code == 200) {
|
|
|
- this.studentList = this.studentList.concat(result.data.rows);
|
|
|
+ Array.prototype.splice.apply(this.studentList, result.data.rows);
|
|
|
+ // this.studentList = this.studentList.concat(result.data.rows);
|
|
|
this.unique(this.studentList, "userId");
|
|
|
}
|
|
|
})
|