diff --git a/src/views/course/Mylecnotes.vue b/src/views/course/Mylecnotes.vue index 1b49b43d..2de099a8 100644 --- a/src/views/course/Mylecnotes.vue +++ b/src/views/course/Mylecnotes.vue @@ -178,19 +178,22 @@ export default { methods: { // 导出所有记录 exportFile() { - let req = { - userId: this.userInfo.sysId - } - apiCourse.courseRecordExport2(req).then(res => { - const link = document.createElement('a');// 创建a标签 - let blob = new Blob([res.data], {type: 'application/vnd.ms-excel'}); // 设置文件类型 - link.style.display = "none"; - link.href = URL.createObjectURL(blob); // 创建URL - link.setAttribute("download", "授课记录.xls"); - document.body.appendChild(link); - link.click(); - document.body.removeChild(link); - }) + // let req = { + // } + // apiCourse.courseRecordExport2(req).then(res => { + // const link = document.createElement('a');// 创建a标签 + // let blob = new Blob([res.data], {type: 'application/vnd.ms-excel'}); // 设置文件类型 + // link.style.display = "none"; + // link.href = URL.createObjectURL(blob); // 创建URL + // link.setAttribute("download", "授课记录.xls"); + // document.body.appendChild(link); + // link.click(); + // document.body.removeChild(link); + // }) + + window.open( + `/manageApi/admin/export/exportInTeacherRecord` + ); }, // 导出课程下的学员信息