| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375 |
- <template>
- <div class="app-container lsyjgl-page">
- <!-- ==================== 搜索区域 ==================== -->
- <div class="search-panel">
- <div class="search-form">
- <div class="form-item">
- <span class="form-label">设备名称:</span>
- <el-input v-model="filters.equipmentName" placeholder="请输入" clearable style="width:200px" />
- </div>
- <div class="form-item">
- <span class="form-label">预警级别:</span>
- <el-select v-model="filters.warningLevel" placeholder="请选择" clearable style="width:160px">
- <el-option label="严重" :value="1" />
- <el-option label="重要" :value="2" />
- <el-option label="一般" :value="3" />
- </el-select>
- </div>
- <div class="form-item">
- <span class="form-label">处理状态:</span>
- <el-select v-model="filters.status" placeholder="请选择" clearable style="width:160px">
- <el-option label="已处理" :value="1" />
- <el-option label="已完成" :value="2" />
- </el-select>
- </div>
- <el-button type="primary" @click="handleSearch">搜索</el-button>
- <el-button @click="handleClear">清除</el-button>
- </div>
- </div>
- <!-- ==================== 数据表格 ==================== -->
- <div class="table-panel">
- <el-table :data="tableData" border style="width:100%" v-loading="loading">
- <el-table-column prop="warningNo" label="预警编号" min-width="140" />
- <el-table-column prop="equipmentName" label="设备名称" min-width="140" show-overflow-tooltip />
- <el-table-column prop="warningLevel" label="预警级别" width="90" align="center">
- <template #default="{ row }">
- <el-tag :type="levelTagType(row.warningLevel)" size="small">{{ levelText(row.warningLevel) }}</el-tag>
- </template>
- </el-table-column>
- <el-table-column prop="currentValue" label="当前值" width="100" />
- <el-table-column prop="thresholdValue" label="阈值" width="100" />
- <el-table-column prop="location" label="位置" min-width="180" show-overflow-tooltip />
- <el-table-column prop="warningTime" label="预警时间" width="160" />
- <el-table-column prop="status" label="处理状态" width="90" align="center">
- <template #default="{ row }">
- <el-tag :type="statusTagType(row.status)" size="small">{{ statusText(row.status) }}</el-tag>
- </template>
- </el-table-column>
- <el-table-column prop="firstApproveTime" label="处理时间" width="160" />
- <el-table-column label="操作" width="140" fixed="right">
- <template #default="{ row }">
- <el-button link type="primary" @click="handleView(row)">查看</el-button>
- <el-button link type="danger" @click="handleDelete(row)">删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- <el-pagination
- v-model:current-page="pageNum"
- v-model:page-size="pageSize"
- :page-sizes="[10, 20, 50, 100]"
- :total="total"
- layout="total, sizes, prev, pager, next, jumper"
- style="margin-top: 16px; justify-content: flex-end"
- @size-change="loadData"
- @current-change="loadData"
- />
- </div>
- <!-- ==================== 查看详情弹窗 ==================== -->
- <el-dialog
- v-model="dialogVisible"
- title="历史预警详情"
- width="680px"
- :close-on-click-modal="false"
- >
- <div class="detail-body" v-if="currentDetail">
- <!-- 右侧信息 -->
- <div class="detail-info">
- <div class="info-code">预警编号:{{ currentDetail.warningNo }}</div>
- <div class="info-grid">
- <div class="info-row">
- <div class="info-item">
- <span class="info-label">设备名称:</span>
- <span class="info-value">{{ currentDetail.equipmentName }}</span>
- </div>
- <div class="info-item">
- <span class="info-label">预警级别:</span>
- <span class="info-value">
- <el-tag :type="levelTagType(currentDetail.warningLevel)" size="small">{{ levelText(currentDetail.warningLevel) }}</el-tag>
- </span>
- </div>
- </div>
- <div class="info-row">
- <div class="info-item">
- <span class="info-label">当前值:</span>
- <span class="info-value">{{ currentDetail.currentValue }}</span>
- </div>
- <div class="info-item">
- <span class="info-label">阈值:</span>
- <span class="info-value">{{ currentDetail.thresholdValue }}</span>
- </div>
- </div>
- <div class="info-row">
- <div class="info-item">
- <span class="info-label">预警时间:</span>
- <span class="info-value">{{ currentDetail.warningTime }}</span>
- </div>
- </div>
- <div class="info-row">
- <div class="info-item">
- <span class="info-label">处理状态:</span>
- <span class="info-value">
- <el-tag :type="statusTagType(currentDetail.status)" size="small">{{ statusText(currentDetail.status) }}</el-tag>
- </span>
- </div>
- <div class="info-item">
- <span class="info-label">处理时间:</span>
- <span class="info-value">{{ currentDetail.firstApproveTime || '-' }}</span>
- </div>
- </div>
- <div class="info-row single">
- <div class="info-item">
- <span class="info-label">位置:</span>
- <span class="info-value desc-text">{{ currentDetail.location }}</span>
- </div>
- </div>
- </div>
- </div>
- </div>
- <template #footer>
- <el-button @click="dialogVisible = false">关闭</el-button>
- </template>
- </el-dialog>
- </div>
- </template>
- <script setup name="Lsyjgl">
- import { ref, reactive, onMounted } from 'vue'
- import { ElMessage, ElMessageBox } from 'element-plus'
- import { getWarningHistoryPage, deleteWarning } from '@/api/drainage'
- // ==================== 等级/状态工具方法 ====================
- function levelText(level) {
- const map = { 1: '严重', 2: '重要', 3: '一般' }
- return map[level] || '-'
- }
- function levelTagType(level) {
- const map = { 1: 'danger', 2: 'warning', 3: '' }
- return map[level] || 'info'
- }
- function statusText(status) {
- const map = { 0: '待处理', 1: '已处理', 2: '已完成' }
- return map[status] ?? '-'
- }
- function statusTagType(status) {
- const map = { 0: 'warning', 1: 'info', 2: 'success' }
- return map[status] || 'info'
- }
- // ==================== 表格数据 ====================
- const tableData = ref([])
- const total = ref(0)
- const loading = ref(false)
- const pageNum = ref(1)
- const pageSize = ref(10)
- // ==================== 搜索筛选 ====================
- const filters = reactive({
- equipmentName: '',
- warningLevel: '',
- status: ''
- })
- // ==================== 数据加载 ====================
- async function loadData() {
- loading.value = true
- try {
- const params = {
- equipmentType: 'drainage'
- }
- if (filters.equipmentName) params.equipmentName = filters.equipmentName
- if (filters.warningLevel) params.warningLevel = filters.warningLevel
- if (filters.status !== '' && filters.status !== null) params.status = filters.status
- const res = await getWarningHistoryPage(pageNum.value, pageSize.value, params)
- const pageData = res.code !== undefined ? res.data : res
- tableData.value = pageData.records || []
- total.value = pageData.total || 0
- } catch (error) {
- console.error('加载历史预警列表失败', error)
- ElMessage.error('加载历史预警列表失败')
- } finally {
- loading.value = false
- }
- }
- function handleSearch() {
- pageNum.value = 1
- loadData()
- }
- function handleClear() {
- filters.equipmentName = ''
- filters.warningLevel = ''
- filters.status = ''
- pageNum.value = 1
- loadData()
- }
- // ==================== 操作:删除 ====================
- async function handleDelete(row) {
- try {
- await ElMessageBox.confirm('确认删除该预警?删除后不可恢复。', '提示', { type: 'warning' })
- await deleteWarning(row.id)
- ElMessage.success('删除成功')
- loadData()
- } catch (error) {
- if (error !== 'cancel') console.error('删除预警失败', error)
- }
- }
- // ==================== 查看详情弹窗 ====================
- const dialogVisible = ref(false)
- const currentDetail = ref(null)
- function handleView(row) {
- currentDetail.value = { ...row }
- dialogVisible.value = true
- }
- onMounted(() => {
- loadData()
- })
- </script>
- <style scoped>
- .lsyjgl-page {
- background: #fff;
- min-height: 100%;
- padding: 16px;
- }
- /* 搜索区 */
- .search-panel {
- background: #fff;
- border: 1px solid #e4e7ed;
- border-radius: 4px;
- padding: 16px 20px;
- margin-bottom: 16px;
- }
- .search-form {
- display: flex;
- align-items: center;
- flex-wrap: wrap;
- gap: 12px;
- }
- .form-item {
- display: flex;
- align-items: center;
- }
- .form-label {
- font-size: 14px;
- color: #606266;
- white-space: nowrap;
- margin-right: 4px;
- }
- /* 表格区 */
- .table-panel {
- background: #fff;
- border-radius: 4px;
- }
- /* 所属类型标签 */
- .type-tag {
- font-weight: 500;
- font-size: 13px;
- }
- .type-pipe {
- color: #409eff;
- }
- .type-point {
- color: #67c23a;
- }
- .type-well {
- color: #e6a23c;
- }
- /* 详情弹窗 */
- .detail-body {
- display: flex;
- gap: 24px;
- padding: 8px 4px;
- }
- /* 左侧图片占位 */
- .detail-img {
- flex-shrink: 0;
- width: 150px;
- height: 150px;
- background: #d9ecff;
- border: 2px solid #b3d8ff;
- border-radius: 4px;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .img-placeholder-icon {
- font-size: 64px;
- color: #409eff;
- opacity: 0.7;
- }
- /* 右侧详情信息 */
- .detail-info {
- flex: 1;
- display: flex;
- flex-direction: column;
- gap: 10px;
- }
- .info-code {
- font-size: 15px;
- font-weight: 600;
- color: #303133;
- padding-bottom: 6px;
- border-bottom: 1px solid #f0f0f0;
- }
- .info-grid {
- display: flex;
- flex-direction: column;
- gap: 8px;
- }
- .info-row {
- display: flex;
- gap: 16px;
- }
- .info-row.single {
- display: block;
- }
- .info-item {
- flex: 1;
- display: flex;
- align-items: baseline;
- font-size: 14px;
- }
- .info-label {
- color: #909399;
- white-space: nowrap;
- min-width: 64px;
- }
- .info-value {
- color: #303133;
- }
- .desc-text {
- color: #606266;
- line-height: 1.6;
- word-break: break-all;
- }
- </style>
|