|
|
|
@ -85,7 +85,7 @@
|
|
|
|
|
</el-row> |
|
|
|
|
|
|
|
|
|
<el-table v-loading="loading" :data="postList" stripe> |
|
|
|
|
<el-table-column label="主机id" align="center" prop="deviceNum" /> |
|
|
|
|
<!-- <el-table-column label="主机id" align="center" prop="deviceNum" /> --> |
|
|
|
|
<el-table-column label="时间" align="center" prop="curTime" /> |
|
|
|
|
<el-table-column label="蒸发器"> |
|
|
|
|
<el-table-column |
|
|
|
@ -265,7 +265,7 @@
|
|
|
|
|
<el-select |
|
|
|
|
v-model="form.deviceNum" |
|
|
|
|
placeholder="请选择主机编号" |
|
|
|
|
clearable |
|
|
|
|
disabled |
|
|
|
|
> |
|
|
|
|
<el-option label="1号主机" value="1" /> |
|
|
|
|
<el-option label="2号主机" value="2" /> |
|
|
|
@ -842,27 +842,23 @@ export default {
|
|
|
|
|
handleExport() { |
|
|
|
|
reportSysExport(this.queryParams).then((res) => { |
|
|
|
|
console.log("导出返回", res); |
|
|
|
|
if (res.code == 200) { |
|
|
|
|
// 请求的结果就是文件 |
|
|
|
|
// 创建一个blob URL,用于生成下载链接 |
|
|
|
|
const url = window.URL.createObjectURL(new Blob([res])); |
|
|
|
|
// 创建一个<a>元素,并设置其href和download属性 |
|
|
|
|
const link = document.createElement("a"); |
|
|
|
|
link.href = url; |
|
|
|
|
link.setAttribute("download", "主机运行记录报表.xls"); // 设置下载的文件名 |
|
|
|
|
// 模拟点击下载链接 |
|
|
|
|
document.body.appendChild(link); |
|
|
|
|
link.click(); |
|
|
|
|
document.body.removeChild(link); |
|
|
|
|
// 释放blob URL资源 |
|
|
|
|
window.URL.revokeObjectURL(url); |
|
|
|
|
this.$message({ |
|
|
|
|
type: "success", |
|
|
|
|
message: "导出成功!", |
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
|
this.$message.error("导出失败!"); |
|
|
|
|
} |
|
|
|
|
// 请求的结果就是文件 |
|
|
|
|
// 创建一个blob URL,用于生成下载链接 |
|
|
|
|
const url = window.URL.createObjectURL(new Blob([res])); |
|
|
|
|
// 创建一个<a>元素,并设置其href和download属性 |
|
|
|
|
const link = document.createElement("a"); |
|
|
|
|
link.href = url; |
|
|
|
|
link.setAttribute("download", "主机运行记录报表.xls"); // 设置下载的文件名 |
|
|
|
|
// 模拟点击下载链接 |
|
|
|
|
document.body.appendChild(link); |
|
|
|
|
link.click(); |
|
|
|
|
document.body.removeChild(link); |
|
|
|
|
// 释放blob URL资源 |
|
|
|
|
window.URL.revokeObjectURL(url); |
|
|
|
|
this.$message({ |
|
|
|
|
type: "success", |
|
|
|
|
message: "导出成功!", |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
// 打印 |
|
|
|
|