|
|
@@ -1,7 +1,7 @@
|
|
|
<template>
|
|
|
<div class="safety-platform-container">
|
|
|
<header class="safety-platform-container__header">
|
|
|
- <div class="breadcrumb-title">告警列表</div>
|
|
|
+ <div class="breadcrumb-title">异常告警列表</div>
|
|
|
</header>
|
|
|
<main class="safety-platform-container__main">
|
|
|
<div class="search-table-container">
|
|
|
@@ -121,7 +121,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</main>
|
|
|
- <el-dialog v-model="DetailDialog" @close="DetailDialog = false" width="60%" title="告警详情">
|
|
|
+ <el-dialog v-model="DetailDialog" @close="DetailDialog = false" width="60%" title="异常告警详情">
|
|
|
<div class="title">设备信息</div>
|
|
|
<el-descriptions :column="2" border>
|
|
|
<el-descriptions-item label="设备类型" >
|
|
|
@@ -321,12 +321,12 @@ const DEVICE_TYPE = reactive({})
|
|
|
try {
|
|
|
const response = await exportTableData(queryParams.queryParam);
|
|
|
if (response) {
|
|
|
- const fileName = `告警列表_${new Date().toISOString().split('T')[0]}.xlsx`;
|
|
|
+ const fileName = `异常告警列表_${new Date().toISOString().split('T')[0]}.xlsx`;
|
|
|
downloadByData(response, fileName);
|
|
|
ElMessage.success('导出成功');
|
|
|
}
|
|
|
} catch (e) {
|
|
|
- console.error('导出告警列表失败:', e);
|
|
|
+ console.error('导出异常告警列表失败:', e);
|
|
|
ElMessage.error('导出失败,请重试');
|
|
|
}
|
|
|
};
|