2025-07-29 23:05:58 +08:00
|
|
|
<template>
|
|
|
|
|
<view class="page-container">
|
|
|
|
|
<uni-collapse ref="collapse" accordion v-if="list.length > 0">
|
2026-01-15 17:51:09 +08:00
|
|
|
<uni-collapse-item v-for="(item,index) in list" :key="item.deviceId+'bmscc'" :open="index===0"
|
2026-01-23 22:33:18 +08:00
|
|
|
class="common-collapse-item" :class="handleCardClass(item)">
|
2026-01-15 17:51:09 +08:00
|
|
|
|
|
|
|
|
<template v-slot:title>
|
|
|
|
|
<view class='title-wrapper'>
|
|
|
|
|
<view class="top">
|
2026-01-25 16:55:22 +08:00
|
|
|
<view class="status">{{CLUSTERWorkStatusOptions[item.workStatus] || '暂无数据'}}</view>
|
2026-01-15 17:51:09 +08:00
|
|
|
<text
|
|
|
|
|
class="name">{{`${item.parentDeviceName?`${item.parentDeviceName} -> ` : ''}${item.deviceName}`}}</text>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
<view class='content'>
|
|
|
|
|
<!-- 设备状态栏 -->
|
|
|
|
|
<uni-group mode="card" class="status-card-group">
|
2026-01-19 17:30:03 +08:00
|
|
|
<view class="flex-container">
|
|
|
|
|
<view class="flex-lists">
|
2025-07-29 23:05:58 +08:00
|
|
|
<view class="grid-item-box">
|
|
|
|
|
<view class="title">工作状态</view>
|
2026-01-15 17:51:09 +08:00
|
|
|
<text
|
2026-01-25 16:55:22 +08:00
|
|
|
class="text work-status-color">{{CLUSTERWorkStatusOptions[item.workStatus] || '-'}}</text>
|
2025-07-29 23:05:58 +08:00
|
|
|
</view>
|
2026-01-19 17:30:03 +08:00
|
|
|
</view>
|
|
|
|
|
<view class="flex-lists">
|
2025-07-29 23:05:58 +08:00
|
|
|
<view class="grid-item-box">
|
|
|
|
|
<view class="title">与PCS通信</view>
|
|
|
|
|
<text
|
2026-01-15 17:51:09 +08:00
|
|
|
class="text">{{communicationStatusOptions[item.pcsCommunicationStatus] || '-'}}</text>
|
2025-07-29 23:05:58 +08:00
|
|
|
</view>
|
2026-01-19 17:30:03 +08:00
|
|
|
</view>
|
|
|
|
|
<view class="flex-lists">
|
2025-07-29 23:05:58 +08:00
|
|
|
<view class="grid-item-box">
|
|
|
|
|
<view class="title">与EMS通信</view>
|
|
|
|
|
<text
|
2026-01-15 17:51:09 +08:00
|
|
|
class="text">{{communicationStatusOptions[item.emsCommunicationStatus] || '-'}}</text>
|
2025-07-29 23:05:58 +08:00
|
|
|
</view>
|
2026-01-19 17:30:03 +08:00
|
|
|
</view>
|
|
|
|
|
</view>
|
2025-07-29 23:05:58 +08:00
|
|
|
</uni-group>
|
2026-01-15 17:51:09 +08:00
|
|
|
<!-- 设备数据 -->
|
2026-03-05 16:34:25 +08:00
|
|
|
<uni-group mode="card" class="data-card-group">
|
|
|
|
|
<uni-row v-for="(infoDataItem,infoDataIndex) in infoData" :key="infoDataIndex+'infoData'"
|
|
|
|
|
class="data-row">
|
2026-01-15 17:51:09 +08:00
|
|
|
<uni-col :span="8">
|
|
|
|
|
<view class="title">{{infoDataItem.label}}</view>
|
|
|
|
|
</uni-col>
|
|
|
|
|
<uni-col :span="16">
|
|
|
|
|
<view class="value">{{item[infoDataItem.attr] | formatNumber}}
|
|
|
|
|
<text v-if="infoDataItem.unit" v-html="infoDataItem.unit"></text>
|
2025-07-29 23:05:58 +08:00
|
|
|
</view>
|
2026-03-05 16:34:25 +08:00
|
|
|
</uni-col>
|
|
|
|
|
</uni-row>
|
|
|
|
|
</uni-group>
|
|
|
|
|
</view>
|
|
|
|
|
</uni-collapse-item>
|
|
|
|
|
</uni-collapse>
|
2025-07-29 23:05:58 +08:00
|
|
|
<view class="no-data" v-else>
|
|
|
|
|
暂无数据
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
2026-03-05 16:34:25 +08:00
|
|
|
<script>
|
|
|
|
|
import {
|
|
|
|
|
getProjectDisplayData,
|
|
|
|
|
getStackNameList,
|
|
|
|
|
getClusterNameList
|
|
|
|
|
} from '@/api/ems/site.js'
|
|
|
|
|
import {
|
|
|
|
|
mapState
|
|
|
|
|
} from 'vuex'
|
|
|
|
|
export default {
|
2025-07-29 23:05:58 +08:00
|
|
|
computed: {
|
|
|
|
|
...mapState({
|
2026-01-25 16:55:22 +08:00
|
|
|
CLUSTERWorkStatusOptions: (state) =>
|
|
|
|
|
state.ems.CLUSTERWorkStatusOptions,
|
2025-07-29 23:05:58 +08:00
|
|
|
communicationStatusOptions: (state) =>
|
|
|
|
|
state.ems.communicationStatusOptions,
|
|
|
|
|
})
|
|
|
|
|
},
|
2026-03-05 16:34:25 +08:00
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
displayData: [],
|
|
|
|
|
clusterDeviceList: [],
|
|
|
|
|
list: [],
|
|
|
|
|
siteId: '',
|
|
|
|
|
infoData: [{
|
2025-07-29 23:05:58 +08:00
|
|
|
label: '簇电压',
|
|
|
|
|
attr: 'clusterVoltage',
|
2025-10-15 18:16:56 +08:00
|
|
|
unit: 'V',
|
|
|
|
|
pointName: '簇电压'
|
2025-07-29 23:05:58 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '可充电量',
|
|
|
|
|
attr: 'chargeableCapacity',
|
2025-10-15 18:16:56 +08:00
|
|
|
unit: 'kWh',
|
|
|
|
|
pointName: '可充电量'
|
2025-07-29 23:05:58 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '累计充电量',
|
|
|
|
|
attr: 'totalChargedCapacity',
|
2025-10-15 18:16:56 +08:00
|
|
|
unit: 'kWh',
|
|
|
|
|
pointName: '累计充电量'
|
2025-07-29 23:05:58 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '簇电流',
|
|
|
|
|
attr: 'clusterCurrent',
|
2025-10-15 18:16:56 +08:00
|
|
|
unit: 'A',
|
|
|
|
|
pointName: '簇电流'
|
2025-07-29 23:05:58 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '可放电量',
|
|
|
|
|
attr: 'dischargeableCapacity',
|
2025-10-15 18:16:56 +08:00
|
|
|
unit: 'kWh',
|
|
|
|
|
pointName: '可放电量'
|
2025-07-29 23:05:58 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '累计放电量',
|
|
|
|
|
attr: 'totalDischargedCapacity',
|
2025-10-15 18:16:56 +08:00
|
|
|
unit: 'kWh',
|
|
|
|
|
pointName: '累计放电量'
|
2025-07-29 23:05:58 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: 'SOH',
|
|
|
|
|
attr: 'soh',
|
2025-10-15 18:16:56 +08:00
|
|
|
unit: '%',
|
|
|
|
|
pointName: 'SOH'
|
2025-07-29 23:05:58 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '平均温度',
|
|
|
|
|
attr: 'averageTemperature',
|
2025-10-15 18:16:56 +08:00
|
|
|
unit: '℃',
|
|
|
|
|
pointName: '平均温度'
|
2025-07-29 23:05:58 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '绝缘电阻',
|
|
|
|
|
attr: 'insulationResistance',
|
2025-10-15 18:16:56 +08:00
|
|
|
unit: 'Ω',
|
|
|
|
|
pointName: '绝缘电阻'
|
2025-07-29 23:05:58 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '当前SOC',
|
|
|
|
|
attr: 'currentSoc',
|
2025-10-15 18:16:56 +08:00
|
|
|
unit: '%',
|
|
|
|
|
pointName: '当前SOC'
|
2025-07-29 23:05:58 +08:00
|
|
|
},
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
},
|
2026-03-05 16:34:25 +08:00
|
|
|
methods: {
|
|
|
|
|
handleCardClass(item) {
|
|
|
|
|
const {
|
|
|
|
|
workStatus = ''
|
|
|
|
|
} = item
|
|
|
|
|
return !(Object.keys(this.CLUSTERWorkStatusOptions).includes(item.workStatus)) ? "timing-collapse-item" :
|
|
|
|
|
workStatus === '9' ? 'warning-collapse-item' : 'running-collapse-item'
|
|
|
|
|
},
|
|
|
|
|
getModuleRows(menuCode, sectionName) {
|
|
|
|
|
return (this.displayData || []).filter(item => item.menuCode === menuCode && item.sectionName === sectionName)
|
|
|
|
|
},
|
|
|
|
|
getFieldName(fieldCode) {
|
|
|
|
|
const raw = String(fieldCode || '').trim()
|
|
|
|
|
if (!raw) return ''
|
|
|
|
|
const index = raw.lastIndexOf('__')
|
|
|
|
|
return index >= 0 ? raw.slice(index + 2) : raw
|
|
|
|
|
},
|
|
|
|
|
getFieldRowMap(rows = [], deviceId = '') {
|
|
|
|
|
const map = {}
|
|
|
|
|
const targetDeviceId = String(deviceId || '')
|
|
|
|
|
rows.forEach(item => {
|
|
|
|
|
if (!item || !item.fieldCode) return
|
|
|
|
|
const itemDeviceId = String(item.deviceId || '')
|
|
|
|
|
if (itemDeviceId !== targetDeviceId) return
|
|
|
|
|
const fieldName = this.getFieldName(item.fieldCode)
|
|
|
|
|
map[fieldName] = item
|
|
|
|
|
const displayName = String(item.fieldName || '').trim()
|
|
|
|
|
if (displayName && !map[displayName]) {
|
|
|
|
|
map[displayName] = item
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
rows.forEach(item => {
|
|
|
|
|
if (!item || !item.fieldCode) return
|
|
|
|
|
const itemDeviceId = String(item.deviceId || '')
|
|
|
|
|
if (itemDeviceId !== '') return
|
|
|
|
|
const fieldName = this.getFieldName(item.fieldCode)
|
|
|
|
|
if (map[fieldName] === undefined || map[fieldName] === null || map[fieldName] === '') {
|
|
|
|
|
map[fieldName] = item
|
|
|
|
|
}
|
|
|
|
|
const displayName = String(item.fieldName || '').trim()
|
|
|
|
|
if (displayName && !map[displayName]) {
|
|
|
|
|
map[displayName] = item
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
return map
|
|
|
|
|
},
|
|
|
|
|
getFieldMap(rows = [], deviceId = '') {
|
|
|
|
|
const rowMap = this.getFieldRowMap(rows, deviceId)
|
|
|
|
|
return Object.keys(rowMap).reduce((acc, fieldName) => {
|
|
|
|
|
const row = rowMap[fieldName]
|
|
|
|
|
if (acc[fieldName] === undefined) {
|
|
|
|
|
acc[fieldName] = row?.fieldValue
|
|
|
|
|
}
|
|
|
|
|
return acc
|
|
|
|
|
}, {})
|
|
|
|
|
},
|
|
|
|
|
getLatestTime(menuCode) {
|
|
|
|
|
const times = (this.displayData || [])
|
|
|
|
|
.filter(item => item.menuCode === menuCode && item.valueTime)
|
|
|
|
|
.map(item => new Date(item.valueTime).getTime())
|
|
|
|
|
.filter(ts => !isNaN(ts))
|
|
|
|
|
if (times.length === 0) {
|
|
|
|
|
return '-'
|
|
|
|
|
}
|
|
|
|
|
const date = new Date(Math.max(...times))
|
|
|
|
|
const p = (n) => String(n).padStart(2, '0')
|
|
|
|
|
return `${date.getFullYear()}-${p(date.getMonth() + 1)}-${p(date.getDate())} ${p(date.getHours())}:${p(date.getMinutes())}:${p(date.getSeconds())}`
|
|
|
|
|
},
|
|
|
|
|
getClusterDeviceList() {
|
|
|
|
|
return getStackNameList(this.siteId)
|
|
|
|
|
.then(response => {
|
|
|
|
|
const stackList = response?.data || []
|
|
|
|
|
if (!stackList.length) {
|
|
|
|
|
this.clusterDeviceList = []
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
const requests = stackList.map(stack => {
|
|
|
|
|
const stackDeviceId = stack.deviceId || stack.id || ''
|
|
|
|
|
return getClusterNameList({
|
|
|
|
|
stackDeviceId,
|
|
|
|
|
siteId: this.siteId
|
|
|
|
|
})
|
|
|
|
|
.then(clusterResponse => {
|
|
|
|
|
const clusterList = clusterResponse?.data || []
|
|
|
|
|
return clusterList.map(cluster => ({
|
|
|
|
|
...cluster,
|
|
|
|
|
parentDeviceName: stack.deviceName || stack.name || stackDeviceId || '',
|
|
|
|
|
}))
|
|
|
|
|
})
|
|
|
|
|
.catch(() => [])
|
|
|
|
|
})
|
|
|
|
|
return Promise.all(requests).then(results => {
|
|
|
|
|
this.clusterDeviceList = results.flat()
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.clusterDeviceList = []
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
buildList() {
|
|
|
|
|
const devices = (this.clusterDeviceList && this.clusterDeviceList.length > 0) ? this.clusterDeviceList : [{
|
|
|
|
|
deviceId: this.siteId,
|
|
|
|
|
deviceName: 'BMS电池簇',
|
|
|
|
|
parentDeviceName: ''
|
|
|
|
|
}]
|
|
|
|
|
this.list = devices.map(device => {
|
|
|
|
|
const deviceId = device.deviceId || device.id || this.siteId
|
|
|
|
|
const infoMap = this.getFieldMap(this.getModuleRows('SBJK_BMSDCC', '簇信息'), deviceId)
|
|
|
|
|
const statusMap = this.getFieldMap(this.getModuleRows('SBJK_BMSDCC', '状态'), deviceId)
|
|
|
|
|
return {
|
|
|
|
|
...infoMap,
|
|
|
|
|
workStatus: statusMap.workStatus,
|
|
|
|
|
pcsCommunicationStatus: statusMap.pcsCommunicationStatus,
|
|
|
|
|
emsCommunicationStatus: statusMap.emsCommunicationStatus,
|
|
|
|
|
currentSoc: infoMap.currentSoc,
|
|
|
|
|
siteId: this.siteId,
|
|
|
|
|
deviceId,
|
|
|
|
|
parentDeviceName: device.parentDeviceName || '',
|
|
|
|
|
deviceName: device.deviceName || device.name || device.deviceId || device.id || 'BMS电池簇',
|
|
|
|
|
dataUpdateTime: this.getLatestTime('SBJK_BMSDCC'),
|
|
|
|
|
alarmNum: 0,
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
updateData() {
|
|
|
|
|
return Promise.all([
|
|
|
|
|
getProjectDisplayData(this.siteId),
|
|
|
|
|
this.getClusterDeviceList()
|
|
|
|
|
]).then(([displayResponse]) => {
|
|
|
|
|
this.displayData = displayResponse?.data || []
|
|
|
|
|
this.buildList()
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
this.displayData = []
|
|
|
|
|
this.list = []
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
onLoad(options) {
|
|
|
|
|
uni.showLoading()
|
|
|
|
|
this.siteId = options.siteId || ''
|
|
|
|
|
this.updateData().finally(() => {
|
|
|
|
|
if (this.list.length > 0) {
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
uni.hideLoading()
|
|
|
|
|
}, 100)
|
|
|
|
|
})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
uni.hideLoading()
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|