2025-06-21 23:59:01 +08:00
|
|
|
|
|
|
|
|
<template>
|
2025-06-28 14:52:49 +08:00
|
|
|
<div v-loading="loading">
|
|
|
|
|
<div v-for="(baseInfo,index) in baseInfoList" :key="index+'bmszlContainer'" style="margin-bottom:25px;">
|
|
|
|
|
<el-card shadow="always" class="common-card-container common-card-container-body-no-padding common-card-container-no-title-bg">
|
|
|
|
|
<div slot="header">
|
|
|
|
|
<span class="large-title">{{index+1}}#{{baseInfo.deviceName}}</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="descriptions-main">
|
|
|
|
|
<el-descriptions direction="vertical" :column="3" :colon="false">
|
2025-06-30 17:32:04 +08:00
|
|
|
<el-descriptions-item labelClassName="descriptions-label" :contentClassName="`descriptions-direction ${baseInfo.workStatus === '0' ? 'save' :'danger'}`" :span="1" label="工作状态" >{{$store.state.ems.workStatusOptions[baseInfo.workStatus]}}</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item labelClassName="descriptions-label" contentClassName="descriptions-direction" :span="1" label="与PCS通信">{{$store.state.ems.communicationStatusOptions[baseInfo.pcsCommunicationStatus]}}</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item labelClassName="descriptions-label" contentClassName="descriptions-direction" :span="1" label="与EMS通信">{{$store.state.ems.communicationStatusOptions[baseInfo.emsCommunicationStatus]}}</el-descriptions-item>
|
2025-06-28 14:52:49 +08:00
|
|
|
</el-descriptions>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="descriptions-main descriptions-main-bg-color">
|
|
|
|
|
<el-descriptions direction="vertical" :column="3" :colon="false">
|
|
|
|
|
<el-descriptions-item labelClassName="descriptions-label" contentClassName="descriptions-direction" v-for="(item,index) in infoData" :key="index+'pcsInfoData'" :span="1" :label="item.label">{{baseInfo[item.attr] | formatNumber}} <span v-if="item.unit" v-html="item.unit"></span></el-descriptions-item>
|
|
|
|
|
</el-descriptions>
|
|
|
|
|
<!-- 进度-->
|
|
|
|
|
<div class="process-container">
|
|
|
|
|
<div class="process-line-bg">
|
2025-07-02 16:57:34 +08:00
|
|
|
<div class="process-line" :style="{height:baseInfo.stackSoc+'%'}"></div>
|
2025-06-28 14:52:49 +08:00
|
|
|
</div>
|
2025-07-02 16:57:34 +08:00
|
|
|
<div class="process">当前SOC : {{baseInfo.stackSoc}}%</div>
|
2025-06-21 23:59:01 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-06-28 14:52:49 +08:00
|
|
|
<el-table
|
|
|
|
|
class="common-table"
|
|
|
|
|
:data="baseInfo.batteryDataList"
|
|
|
|
|
stripe
|
|
|
|
|
max-height="500"
|
|
|
|
|
style="width: 100%;margin-top:25px;">
|
|
|
|
|
<el-table-column
|
|
|
|
|
prop="clusterId"
|
|
|
|
|
label="簇号">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="簇电压"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{scope.row.clusterVoltage}} V</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="簇电流">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{scope.row.clusterCurrent}} A</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="簇SOC">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{scope.row.currentSoc}} %</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
prop="maxVoltage"
|
|
|
|
|
label="单体最高电压">
|
|
|
|
|
<template slot-scope="scope">
|
2025-07-03 21:59:40 +08:00
|
|
|
<span>{{scope.row.maxCellVoltage}} V</span>
|
2025-06-28 14:52:49 +08:00
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
2025-08-11 17:34:39 +08:00
|
|
|
<el-table-column
|
2025-08-11 21:50:38 +08:00
|
|
|
prop="maxCellVoltageId"
|
2025-08-11 17:34:39 +08:00
|
|
|
label="电池号码">
|
|
|
|
|
</el-table-column>
|
2025-06-28 14:52:49 +08:00
|
|
|
<el-table-column
|
|
|
|
|
prop="minVoltage"
|
|
|
|
|
label="单体最低电压">
|
|
|
|
|
<template slot-scope="scope">
|
2025-07-03 21:59:40 +08:00
|
|
|
<span>{{scope.row.minCellVoltage}} V</span>
|
2025-06-28 14:52:49 +08:00
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
2025-08-11 17:34:39 +08:00
|
|
|
<el-table-column
|
2025-08-11 21:50:38 +08:00
|
|
|
prop="minCellVoltageId"
|
2025-08-11 17:34:39 +08:00
|
|
|
label="电池号码">
|
|
|
|
|
</el-table-column>
|
2025-06-28 14:52:49 +08:00
|
|
|
<el-table-column
|
|
|
|
|
label="单体最高温度">
|
|
|
|
|
<template slot-scope="scope">
|
2025-07-03 21:59:40 +08:00
|
|
|
<span>{{scope.row.maxCellTemp}} ℃</span>
|
2025-06-28 14:52:49 +08:00
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
2025-08-11 17:34:39 +08:00
|
|
|
<el-table-column
|
2025-08-11 21:50:38 +08:00
|
|
|
prop="maxCellTempId"
|
2025-08-11 17:34:39 +08:00
|
|
|
label="电池号码">
|
|
|
|
|
</el-table-column>
|
2025-06-28 14:52:49 +08:00
|
|
|
<el-table-column
|
|
|
|
|
prop="minTemperature"
|
|
|
|
|
label="单体最低温度">
|
|
|
|
|
<template slot-scope="scope">
|
2025-07-03 21:59:40 +08:00
|
|
|
<span>{{scope.row.minCellTemp}} ℃</span>
|
2025-06-28 14:52:49 +08:00
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
2025-08-11 17:34:39 +08:00
|
|
|
<el-table-column
|
2025-08-11 21:50:38 +08:00
|
|
|
prop="minCellTempId"
|
2025-08-11 17:34:39 +08:00
|
|
|
label="电池号码">
|
|
|
|
|
</el-table-column>
|
2025-06-24 23:50:29 +08:00
|
|
|
|
2025-06-28 14:52:49 +08:00
|
|
|
</el-table>
|
|
|
|
|
</el-card>
|
|
|
|
|
</div>
|
|
|
|
|
<el-empty v-show="baseInfoList.length<=0" :image-size="200"></el-empty>
|
2025-06-21 23:59:01 +08:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2025-06-28 14:52:49 +08:00
|
|
|
import {getBMSOverView} from '@/api/ems/dzjk'
|
|
|
|
|
import getQuerySiteId from "@/mixins/ems/getQuerySiteId";
|
2025-06-21 23:59:01 +08:00
|
|
|
export default {
|
2025-06-24 23:50:29 +08:00
|
|
|
name:'DzjkSbjkBmszl',
|
2025-06-28 14:52:49 +08:00
|
|
|
mixins:[getQuerySiteId],
|
2025-06-21 23:59:01 +08:00
|
|
|
data() {
|
|
|
|
|
return {
|
2025-06-28 14:52:49 +08:00
|
|
|
loading:false,
|
|
|
|
|
baseInfoList:[],
|
2025-06-21 23:59:01 +08:00
|
|
|
infoData:[
|
2025-07-02 16:57:34 +08:00
|
|
|
{label:'电池堆总电压',attr:'stackVoltage',unit:'V'},
|
|
|
|
|
{label:'可充电量',attr:'availableChargeCapacity',unit:'kWh'},
|
|
|
|
|
{label:'累计充电量',attr:'totalChargeCapacity',unit:'kWh'},
|
|
|
|
|
{label:'电池堆总电流',attr:'stackCurrent',unit:'A'},
|
|
|
|
|
{label:'可放电量',attr:'availableDischargeCapacity',unit:'kWh'},
|
|
|
|
|
{label:'累计放电量',attr:'totalDischargeCapacity',unit:'kWh'},
|
|
|
|
|
{label:'SOH',attr:'stackSoh',unit:'%'},
|
|
|
|
|
{label:'平均温度',attr:'operatingTemp',unit:'℃'},
|
|
|
|
|
{label:'绝缘电阻',attr:'stackInsulationResistance',unit:'Ω'},
|
2025-06-21 23:59:01 +08:00
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
},
|
2025-06-28 14:52:49 +08:00
|
|
|
methods:{
|
|
|
|
|
init(){
|
|
|
|
|
this.loading=true;
|
|
|
|
|
getBMSOverView(this.siteId).then(response => {
|
|
|
|
|
this.baseInfoList = JSON.parse(JSON.stringify(response?.data || []));
|
|
|
|
|
}).finally(() => {this.loading = false})
|
|
|
|
|
}
|
2025-06-21 23:59:01 +08:00
|
|
|
|
2025-06-28 14:52:49 +08:00
|
|
|
}
|
2025-06-21 23:59:01 +08:00
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
2025-06-22 21:01:34 +08:00
|
|
|
::v-deep {
|
|
|
|
|
//描述列表样式
|
|
|
|
|
.descriptions-main {
|
|
|
|
|
padding: 24px 300px 24px 24px;
|
|
|
|
|
|
|
|
|
|
.descriptions-main-bg-color {
|
|
|
|
|
padding: 14px 300px 14px 24px;
|
2025-06-21 23:59:01 +08:00
|
|
|
}
|
|
|
|
|
}
|
2025-06-22 21:01:34 +08:00
|
|
|
}
|
2025-06-21 23:59:01 +08:00
|
|
|
// 进度条样式
|
2025-06-22 21:01:34 +08:00
|
|
|
.process-container{
|
|
|
|
|
width:100px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
right:70px;
|
|
|
|
|
top:50%;
|
|
|
|
|
transform: translateY(-50%);
|
|
|
|
|
.process-line-bg{
|
|
|
|
|
position: relative;
|
|
|
|
|
width:100%;
|
|
|
|
|
height: 110px;
|
|
|
|
|
background-color:#fff2cb ;
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
box-shadow: 0 0 10px #fff2cb, 0 0 0 rgba(255, 242, 203, 0.5);
|
|
|
|
|
.process-line{
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
width: 100%;
|
2025-06-28 14:52:49 +08:00
|
|
|
height: 0;
|
2025-06-22 21:01:34 +08:00
|
|
|
background-color: #fc6c6c;
|
|
|
|
|
border-radius: 0 0 6px 6px;
|
|
|
|
|
box-shadow: 0 0 10px rgb(252 108 108), 0 0 0 rgba(252, 108, 108, 0.5);
|
2025-06-21 23:59:01 +08:00
|
|
|
}
|
|
|
|
|
}
|
2025-06-22 21:01:34 +08:00
|
|
|
.process{
|
|
|
|
|
margin-top:15px;
|
|
|
|
|
color:#666666;
|
|
|
|
|
}
|
2025-06-21 23:59:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
</style>
|