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);

部分文件因为文件数量过多而无法显示