zhangjie 6 сар өмнө
parent
commit
2b7d43127a

+ 6 - 9
src/modules/course/components/CourseDocumentDetail.vue

@@ -348,15 +348,12 @@ export default {
       this.$message.success("下载成功!");
     },
     toToolDownload() {
-      const url = getDownloadURLScheme(
-        {
-          semesterId: this.course.semesterId,
-          examId: this.course.examId,
-          courseCode: this.course.courseCode,
-          paperNumber: this.course.paperNumber,
-        }
-        // "http://test-school-1.teach-cloud-test.com"
-      );
+      const url = getDownloadURLScheme({
+        semesterId: this.course.semesterId,
+        examId: this.course.examId,
+        courseCode: this.course.courseCode,
+        paperNumber: this.course.paperNumber,
+      });
 
       openApp(url);
     },