疯狂的狮子li
2021-08-03 da4e0806569af3e676c88cbbe637debf4d1a57c3
ruoyi-ui/src/views/monitor/operlog/index.vue
@@ -189,6 +189,7 @@
<script>
import { list, delOperlog, cleanOperlog, exportOperlog } from "@/api/monitor/operlog";
import { downLoadExcel } from "@/utils/zipdownload";
export default {
  name: "Operlog",
@@ -316,18 +317,7 @@
    },
    /** 导出按钮操作 */
    handleExport() {
      const queryParams = this.queryParams;
      this.$confirm('是否确认导出所有操作日志数据项?', "警告", {
          confirmButtonText: "确定",
          cancelButtonText: "取消",
          type: "warning"
        }).then(() => {
          this.exportLoading = true;
          return exportOperlog(queryParams);
        }).then(response => {
          this.download(response.msg);
          this.exportLoading = false;
        }).catch(() => {});
      downLoadExcel('/monitor/operlog/export', this.queryParams);
    }
  }
};