| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668 |
- <template>
- <div class="threshold-management">
- <div class="main-content">
- <div class="point-list-panel">
- <div class="panel-title">
- <span>设备列表</span>
- <el-button :icon="Refresh" text @click="loadDeviceList">刷新</el-button>
- </div>
- <el-input
- v-model="searchKeyword"
- placeholder="搜索设备编号/名称"
- clearable
- :prefix-icon="Search"
- size="small"
- @input="handleSearch"
- />
- <div v-loading="listLoading" class="point-list">
- <div
- v-for="point in deviceList"
- :key="point.equipmentId"
- class="point-item"
- :class="{ active: selectedPoint?.equipmentId === point.equipmentId }"
- @click="selectPoint(point)"
- >
- <div class="point-header">
- <span class="point-name">{{ point.equipmentName || point.equipmentCode || '未命名设备' }}</span>
- <el-tag :type="getAlarmTagType(point)" size="small">
- {{ getAlarmText(point) }}
- </el-tag>
- </div>
- <div class="point-location">
- <el-icon><Location /></el-icon>
- <span>{{ point.equipmentLocation || '暂无位置' }}</span>
- </div>
- <div class="point-meta">
- <span>编号:{{ point.equipmentCode || '-' }}</span>
- <span>类型:{{ point.equipmentTypeName || '-' }}</span>
- </div>
- <div class="point-status-row">
- <el-tag size="small" effect="plain" :type="getOnlineTagType(point.equipmentStatus?.onlineStatus)">
- {{ getOnlineText(point.equipmentStatus?.onlineStatus) }}
- </el-tag>
- <el-tag size="small" effect="plain" :type="getUseStatusTagType(point.equipmentStatus?.currentStatus)">
- {{ getUseStatusText(point.equipmentStatus?.currentStatus) }}
- </el-tag>
- </div>
- </div>
- <el-empty
- v-if="!listLoading && !deviceList.length"
- description="暂无井盖监测设备"
- :image-size="120"
- />
- </div>
- <div class="pagination-area">
- <el-pagination
- small
- background
- layout="total, prev, pager, next"
- :total="total"
- :page-size="pageSize"
- v-model:current-page="currentPage"
- @current-change="loadDeviceList"
- />
- </div>
- </div>
- <div v-if="selectedPoint" v-loading="detailLoading" class="config-panel">
- <div class="info-card">
- <div class="card-title">
- <span><el-icon><Monitor /></el-icon> 设备基本信息</span>
- </div>
- <el-descriptions :column="2" border>
- <el-descriptions-item label="设备编号">{{ selectedDetail?.equipmentCode || '-' }}</el-descriptions-item>
- <el-descriptions-item label="设备名称">{{ selectedDetail?.equipmentName || '-' }}</el-descriptions-item>
- <el-descriptions-item label="设备类型">{{ selectedDetail?.equipmentTypeName || '-' }}</el-descriptions-item>
- <el-descriptions-item label="设备型号">{{ selectedDetail?.equipmentModel || '-' }}</el-descriptions-item>
- <el-descriptions-item label="生产厂商">{{ selectedDetail?.manufacturer || '-' }}</el-descriptions-item>
- <el-descriptions-item label="安装时间">{{ formatDateTime(selectedDetail?.installTime) }}</el-descriptions-item>
- <el-descriptions-item label="设备位置">{{ selectedDetail?.equipmentLocation || '-' }}</el-descriptions-item>
- <el-descriptions-item label="维护人员">{{ selectedDetail?.maintainer || '-' }}</el-descriptions-item>
- </el-descriptions>
- </div>
- <div class="info-card">
- <div class="card-title">
- <span><el-icon><Warning /></el-icon> 最新监测状态</span>
- </div>
- <div class="status-grid">
- <div class="status-item">
- <div class="status-label">在线状态</div>
- <div class="status-value">{{ getOnlineText(selectedDetail?.equipmentStatus?.onlineStatus) }}</div>
- </div>
- <div class="status-item">
- <div class="status-label">报警状态</div>
- <div class="status-value">{{ getAlarmText(selectedDetail) }}</div>
- </div>
- <div class="status-item">
- <div class="status-label">倾斜角度</div>
- <div class="status-value">{{ appendUnit(selectedDetail?.manholeData?.tiltAngle, '°') }}</div>
- </div>
- <div class="status-item">
- <div class="status-label">电池电量</div>
- <div class="status-value">{{ appendUnit(selectedDetail?.manholeData?.batteryLevel, '%') }}</div>
- </div>
- <div class="status-item">
- <div class="status-label">信号强度</div>
- <div class="status-value">{{ appendUnit(selectedDetail?.manholeData?.signalStrength, '%') }}</div>
- </div>
- <div class="status-item">
- <div class="status-label">水浸状态</div>
- <div class="status-value">{{ getBinaryAlarmText(selectedDetail?.manholeData?.waterInfiltrationAlarmStatus) }}</div>
- </div>
- <div class="status-item">
- <div class="status-label">水位状态</div>
- <div class="status-value">{{ getBinaryAlarmText(selectedDetail?.manholeData?.waterLevelAlarmStatus) }}</div>
- </div>
- <div class="status-item">
- <div class="status-label">激活状态</div>
- <div class="status-value">{{ selectedDetail?.manholeData?.activationStatus || '-' }}</div>
- </div>
- </div>
- </div>
- <div class="threshold-card">
- <div class="card-title">
- <span><el-icon><Setting /></el-icon> 报警阈值设置</span>
- <div class="card-actions">
- <el-button :icon="Refresh" size="small" @click="resetThresholds">重置</el-button>
- <el-button :loading="saveLoading" size="small" type="primary" @click="saveThresholds">保存设置</el-button>
- </div>
- </div>
- <div class="threshold-tip">
- 当前版本先对接后端已支持的 3 类阈值:倾斜、水位、温度。
- </div>
- <el-tabs v-model="activeTab" class="threshold-tabs">
- <el-tab-pane
- v-for="item in thresholdConfigList"
- :key="item.key"
- :label="item.label"
- :name="item.key"
- >
- <div class="threshold-item">
- <div class="item-label">{{ item.desc }}</div>
- <div class="item-control">
- <span class="field-label">最小值</span>
- <el-input-number
- v-model="thresholds[item.key].minValue"
- :controls="false"
- :precision="item.precision"
- :step="item.step"
- class="threshold-input"
- placeholder="未设置"
- />
- <span class="unit">{{ item.unit }}</span>
- <span class="field-label">最大值</span>
- <el-input-number
- v-model="thresholds[item.key].maxValue"
- :controls="false"
- :precision="item.precision"
- :step="item.step"
- class="threshold-input"
- placeholder="未设置"
- />
- <span class="unit">{{ item.unit }}</span>
- </div>
- <el-input
- v-model="thresholds[item.key].remark"
- maxlength="100"
- placeholder="请输入备注"
- />
- <div class="saved-hint">
- 当前阈值配置将保存到后端预警规则
- </div>
- </div>
- </el-tab-pane>
- </el-tabs>
- </div>
- </div>
- <div v-else class="empty-panel">
- <el-empty description="请从左侧选择设备查看阈值配置" :image-size="140" />
- </div>
- </div>
- </div>
- </template>
- <script setup>
- import {onBeforeUnmount, onMounted, ref} from 'vue'
- import {ElMessage} from 'element-plus'
- import {Location, Monitor, Refresh, Search, Setting, Warning} from '@element-plus/icons-vue'
- import {
- getManholeAlarmDeviceDetail,
- getManholeDevicePage,
- saveManholeAlarmThreshold
- } from '@/api/pipeNetwork/basic'
- const thresholdConfigList = [
- {
- key: 'tilt',
- label: '倾斜监测',
- warningType: '倾斜预警',
- warningCode: 'WARN-TILT',
- unit: '°',
- step: 0.1,
- precision: 1,
- desc: '当倾斜角度小于等于最小值或大于等于最大值时触发报警'
- },
- {
- key: 'waterLevel',
- label: '水位监测',
- warningType: '水位预警',
- warningCode: 'WARN-WATER-LEVEL',
- unit: 'cm',
- step: 0.1,
- precision: 1,
- desc: '用于井盖水位报警阈值配置'
- },
- {
- key: 'temperature',
- label: '温度监测',
- warningType: '温度预警',
- warningCode: 'WARN-TEMPERATURE',
- unit: '℃',
- step: 0.1,
- precision: 1,
- desc: '用于设备温度报警阈值配置'
- }
- ]
- const searchKeyword = ref('')
- const activeTab = ref('tilt')
- const listLoading = ref(false)
- const detailLoading = ref(false)
- const saveLoading = ref(false)
- const deviceList = ref([])
- const total = ref(0)
- const currentPage = ref(1)
- const pageSize = 8
- const selectedPoint = ref(null)
- const selectedDetail = ref(null)
- const thresholds = ref(createEmptyThresholds())
- // 搜索防抖
- let searchTimer = null
- function handleSearch() {
- clearTimeout(searchTimer)
- searchTimer = setTimeout(() => {
- currentPage.value = 1
- loadDeviceList()
- }, 300)
- }
- function createEmptyThresholds() {
- return thresholdConfigList.reduce((acc, item) => {
- acc[item.key] = {
- id: '',
- minValue: null,
- maxValue: null,
- remark: ''
- }
- return acc
- }, {})
- }
- function normalizeThresholdList(list) {
- const safeList = Array.isArray(list) ? list : []
- const result = createEmptyThresholds()
- thresholdConfigList.forEach((item) => {
- const matched = safeList.find(threshold => threshold.warningCode === item.warningCode)
- if (matched) {
- result[item.key] = {
- id: matched.id || '',
- minValue: matched.minValue ?? null,
- maxValue: matched.maxValue ?? null,
- remark: matched.remark || ''
- }
- }
- })
- return result
- }
- function getOnlineText(status) {
- return Number(status) === 1 ? '在线' : '离线'
- }
- function getOnlineTagType(status) {
- return Number(status) === 1 ? 'success' : 'info'
- }
- function getAlarmText(point) {
- return Number(point?.equipmentStatus?.alarmStatus) === 1 ? '报警' : '正常'
- }
- function getAlarmTagType(point) {
- return Number(point?.equipmentStatus?.alarmStatus) === 1 ? 'danger' : 'success'
- }
- function getUseStatusText(status) {
- const map = {
- 1: '在用',
- 2: '闲置',
- 3: '维修',
- 4: '报废',
- 5: '待入库'
- }
- return map[Number(status)] || '未知'
- }
- function getUseStatusTagType(status) {
- const map = {
- 1: 'success',
- 2: 'info',
- 3: 'warning',
- 4: 'danger',
- 5: ''
- }
- return map[Number(status)] || 'info'
- }
- function getBinaryAlarmText(status) {
- return `${status}` === '1' ? '报警' : `${status}` === '0' ? '正常' : '-'
- }
- function appendUnit(value, unit) {
- if (value === undefined || value === null || value === '') return '-'
- return `${value}${unit}`
- }
- function formatDateTime(value) {
- return value || '-'
- }
- async function loadDeviceList() {
- listLoading.value = true
- try {
- const res = await getManholeDevicePage({
- pageNum: currentPage.value,
- pageSize,
- deviceName: searchKeyword.value.trim() || null,
- isQueryManholeData: true
- })
- const list = res.data?.records || []
- deviceList.value = list
- total.value = res.data?.total || list.length
- if (!list.length) {
- selectedPoint.value = null
- selectedDetail.value = null
- thresholds.value = createEmptyThresholds()
- return
- }
- const currentId = selectedPoint.value?.equipmentId
- const currentPoint = list.find(item => item.equipmentId === currentId) || list[0]
- await selectPoint(currentPoint)
- } catch (error) {
- deviceList.value = []
- selectedPoint.value = null
- selectedDetail.value = null
- } finally {
- listLoading.value = false
- }
- }
- async function selectPoint(point) {
- if (!point?.equipmentId) return
- selectedPoint.value = point
- await loadDeviceDetail(point.equipmentId)
- }
- async function loadDeviceDetail(id) {
- detailLoading.value = true
- try {
- const res = await getManholeAlarmDeviceDetail(id)
- selectedDetail.value = res?.data || null
- thresholds.value = normalizeThresholdList(selectedDetail.value?.warningThresholdList)
- } catch (error) {
- selectedDetail.value = null
- thresholds.value = createEmptyThresholds()
- } finally {
- detailLoading.value = false
- }
- }
- async function resetThresholds() {
- if (!selectedPoint.value?.equipmentId) return
- await loadDeviceDetail(selectedPoint.value.equipmentId)
- ElMessage.success('已恢复为服务端最新阈值')
- }
- function hasThresholdValue(item) {
- return (
- (item.minValue !== null && item.minValue !== undefined) ||
- (item.maxValue !== null && item.maxValue !== undefined)
- )
- }
- async function saveThresholds() {
- if (!selectedDetail.value?.equipmentCode) {
- ElMessage.warning('未获取到设备编码,无法保存')
- return
- }
- const invalidConfigs = thresholdConfigList.filter((config) => {
- const formItem = thresholds.value[config.key]
- return formItem.id && !hasThresholdValue(formItem)
- })
- if (invalidConfigs.length) {
- ElMessage.warning(`${invalidConfigs[0].label}请至少保留一个阈值`)
- return
- }
- const payloads = thresholdConfigList
- .map((config) => {
- const formItem = thresholds.value[config.key]
- if (!hasThresholdValue(formItem) && !formItem.id) return null
- return {
- id: formItem.id || undefined,
- deviceCode: selectedDetail.value.equipmentCode,
- warningType: config.warningType,
- warningCode: config.warningCode,
- minValue: formItem.minValue,
- maxValue: formItem.maxValue,
- remark: formItem.remark || ''
- }
- })
- .filter(Boolean)
- if (!payloads.length) {
- ElMessage.warning('请先填写至少一项阈值')
- return
- }
- saveLoading.value = true
- try {
- await Promise.all(payloads.map(item => saveManholeAlarmThreshold(item)))
- ElMessage.success('阈值保存成功')
- await loadDeviceDetail(selectedPoint.value.equipmentId)
- } finally {
- saveLoading.value = false
- }
- }
- onMounted(() => {
- loadDeviceList()
- })
- onBeforeUnmount(() => {
- clearTimeout(searchTimer)
- })
- </script>
- <style scoped>
- .threshold-management {
- padding: 20px;
- background: #f0f2f6;
- min-height: 100vh;
- }
- .main-content {
- display: flex;
- gap: 20px;
- }
- .point-list-panel {
- width: 340px;
- background: #fff;
- border-radius: 16px;
- padding: 16px;
- display: flex;
- flex-direction: column;
- gap: 12px;
- }
- .panel-title {
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-weight: 600;
- }
- .point-list {
- max-height: calc(100vh - 180px);
- overflow-y: auto;
- }
- .point-item {
- border: 1px solid #e5e7eb;
- border-radius: 12px;
- padding: 14px;
- margin-bottom: 12px;
- cursor: pointer;
- transition: all 0.2s ease;
- }
- .point-item:hover {
- background: #f8fbff;
- border-color: #bfdbfe;
- }
- .point-item.active {
- background: #ecf5ff;
- border-color: #409eff;
- }
- .point-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- gap: 8px;
- margin-bottom: 8px;
- }
- .point-name {
- font-weight: 600;
- color: #303133;
- }
- .point-location {
- display: flex;
- align-items: center;
- gap: 4px;
- color: #606266;
- font-size: 12px;
- margin-bottom: 8px;
- }
- .point-meta {
- display: flex;
- flex-direction: column;
- gap: 4px;
- font-size: 12px;
- color: #409eff;
- margin-bottom: 8px;
- }
- .point-status-row {
- display: flex;
- gap: 8px;
- }
- .config-panel {
- flex: 1;
- display: flex;
- flex-direction: column;
- gap: 20px;
- }
- .info-card,
- .threshold-card {
- background: #fff;
- border-radius: 16px;
- padding: 18px 20px;
- box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
- }
- .card-title {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 16px;
- padding-left: 12px;
- border-left: 4px solid #409eff;
- font-size: 16px;
- font-weight: 600;
- }
- .card-actions {
- display: flex;
- gap: 8px;
- }
- .status-grid {
- display: grid;
- grid-template-columns: repeat(4, minmax(0, 1fr));
- gap: 12px;
- }
- .status-item {
- background: #f8fafc;
- border: 1px solid #edf2f7;
- border-radius: 12px;
- padding: 14px;
- }
- .status-label {
- color: #909399;
- font-size: 13px;
- margin-bottom: 8px;
- }
- .status-value {
- color: #303133;
- font-size: 16px;
- font-weight: 600;
- }
- .threshold-tip {
- margin-bottom: 12px;
- padding: 10px 12px;
- border-radius: 8px;
- background: #f4f9ff;
- color: #606266;
- font-size: 13px;
- }
- .threshold-item {
- padding: 8px 4px 4px;
- }
- .item-label {
- margin-bottom: 16px;
- color: #606266;
- font-size: 14px;
- }
- .item-control {
- display: flex;
- align-items: center;
- flex-wrap: wrap;
- gap: 8px;
- margin-bottom: 16px;
- }
- .field-label {
- color: #303133;
- font-weight: 500;
- }
- .threshold-input {
- width: 160px;
- }
- .unit {
- color: #909399;
- margin-right: 16px;
- }
- .saved-hint {
- margin-top: 10px;
- color: #909399;
- font-size: 12px;
- }
- .empty-panel {
- flex: 1;
- display: flex;
- justify-content: center;
- align-items: center;
- background: #fff;
- border-radius: 16px;
- }
- .pagination-area {
- padding: 8px 0 0;
- display: flex;
- justify-content: center;
- }
- </style>
|