From fa48bdf266a5e3bf4a704fd503e4f51e4764c52c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E4=BE=9D=E6=A2=A6?= <15822465730@163.com> Date: Fri, 19 Dec 2025 09:58:07 +0800 Subject: [PATCH] =?UTF-8?q?=E6=95=99=E5=B8=88=E7=AB=AF1=E6=9C=9F=E5=AF=BC?= =?UTF-8?q?=E5=87=BA=E5=8F=82=E6=95=B0=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/course/CourseManage.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/views/course/CourseManage.vue b/src/views/course/CourseManage.vue index a14d0605..1e2f6f80 100644 --- a/src/views/course/CourseManage.vue +++ b/src/views/course/CourseManage.vue @@ -942,6 +942,7 @@ export default { apicourseStudy .studyExport({ courseId: this.courseDetail.id, + contentName: this.recourseListQuery.contentName }) .then((res) => { this.handleExport( @@ -956,8 +957,8 @@ export default { courseId: this.courseDetail.id, aname: this.learningRecords.name, status: this.learningRecords.status, - queryStartTime: this.learningRecords.queryStartTime, - queryFinishTime: this.learningRecords.queryFinishTime, + queryStartTime: this.studyDateTime.length > 0 ? this.studyDateTime[0] : "", + queryFinishTime: this.studyDateTime.length > 1 ? this.studyDateTime[1] : "", }) .then((res) => { this.handleExport(res, this.courseDetail.name + "的学习记录.xlsx");