This commit is contained in:
白菜
2025-09-08 18:01:48 +08:00
parent 2742f874ce
commit cc3164a423
8 changed files with 17 additions and 17 deletions

View File

@ -57,7 +57,7 @@ export default {
this.siteId = siteId
this.timeRange=[]
this.deviceId=''
this.$refs.dateRangeSelect.init()
this.$refs.dateRangeSelect.init(true)
this.showLoading()
getPcsNameList(siteId).then(response=>{
const data=response?.data || [];

View File

@ -107,11 +107,11 @@ export default {
series: [
{
yAxisIndex:0,
type: 'line',
type: 'bar',
},
{
yAxisIndex:0,
type: 'line',
type: 'bar',
},
]
})

View File

@ -10,7 +10,7 @@
class="common-card-container common-card-container-body-no-padding"
>
<div slot="header">
<span class="card-title">静态信息</span>
<span class="card-title">站点信息</span>
</div>
<div
style="box-sizing: border-box; height: 250px; padding: 20px 15px"

View File

@ -4,7 +4,7 @@
<div v-for="(baseInfo,index) in baseInfoList" :key="index+'bmsdccContainer'" 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>
<span class="large-title">{{index+1}}#{{baseInfo.parentDeviceName?`${baseInfo.parentDeviceName} -> ` : ''}}{{baseInfo.deviceName}}</span>
</div>
<div class="descriptions-main">
<el-descriptions direction="vertical" :column="3" :colon="false">
@ -20,7 +20,7 @@
<!-- 进度-->
<div class="process-container">
<div class="process-line-bg">
<div class="process-line":style="{height:baseInfo.currentSoc+'%'}"></div>
<div class="process-line" :style="{height:baseInfo.currentSoc+'%'}"></div>
</div>
<div class="process">当前SOC : {{baseInfo.currentSoc}}%</div>
</div>