ZN
2026-03-20 8bf59ab1b9e97a0a7d2fa122746b287c185852ae
src/views/personnelManagement/classsSheduling/index.vue
@@ -674,10 +674,12 @@
    })
      .then(res => {
        proxy.$modal.msgSuccess("下载成功");
        downLoading.value = false;
        const blob = new Blob([res], {
          type: "application/force-download",
        });
        const blob =
          res instanceof Blob
            ? res
            : new Blob([res], {
                type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
              });
        let fileName = "";
        if (query.month) {
          fileName = year + "-" + query.month + " 班次信息";
@@ -687,6 +689,8 @@
        proxy.$download.saveAs(blob, fileName + ".xlsx");
      })
      .catch(err => {
      })
      .finally(() => {
        downLoading.value = false;
      });
  };
@@ -974,7 +978,7 @@
  .user-stats {
    /* display: flex; */
    /* flex-wrap: wrap;
                                                                                                                                                                                                                                                                                      gap: 10px; */
                                                                                                                                                                                                                                                                                        gap: 10px; */
    margin-bottom: 4px;
  }
@@ -1224,6 +1228,7 @@
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 65px;
  }
  /* 月度出勤 */