lsc 2 년 전
부모
커밋
11dc42e166
2개의 변경된 파일268개의 추가작업 그리고 548개의 파일을 삭제
  1. 262 546
      src/components/student/studyStudent.vue
  2. 6 2
      src/components/studyStudent.vue

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 262 - 546
src/components/student/studyStudent.vue


+ 6 - 2
src/components/studyStudent.vue

@@ -11526,8 +11526,12 @@ export default {
       const x = new XMLHttpRequest();
       x.open("GET", _url, true);
       x.responseType = "blob";
-      const loading = this.openLoading();
-      _this.$message.success("文件下载中...");
+      const loading = _this.$loading.service({
+        background: "rgba(255, 255, 255, 0.7)",
+        target: document.body,
+        text:'文件加载中...'
+      });
+      // _this.$message.success("文件下载中...");
       x.onload = function (e) {
         loading.close();
         // const url = window.URL.createObjectURL(x.response);

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.