//一个数组的元素添加在另外一个数组上
this.courseList.push(...res.data.records);
//一个数组添加在另外一个数组上 二维数组
this.courseList.push(res.data.records);
//一个数组的元素添加在另外一个数组上
this.courseList.push(...res.data.records);
//一个数组添加在另外一个数组上 二维数组
this.courseList.push(res.data.records);