Compare commits

..

2 Commits

Author SHA1 Message Date
59d2a09644 pcs顶部方块样式调整 2025-07-04 15:12:25 +08:00
21a8871e3c bms总览接口参数更新 2025-07-03 21:59:40 +08:00
2 changed files with 5 additions and 5 deletions

View File

@ -24,7 +24,7 @@
font-weight: 500; font-weight: 500;
} }
::v-deep .el-card__body{ ::v-deep .el-card__body{
padding: 12px 16px; padding: 12px 10px;
} }
} }
</style> </style>

View File

@ -58,27 +58,27 @@
prop="maxVoltage" prop="maxVoltage"
label="单体最高电压"> label="单体最高电压">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{scope.row.maxVoltage}} V</span> <span>{{scope.row.maxCellVoltage}} V</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="minVoltage" prop="minVoltage"
label="单体最低电压"> label="单体最低电压">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{scope.row.minVoltage}} V</span> <span>{{scope.row.minCellVoltage}} V</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
label="单体最高温度"> label="单体最高温度">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{scope.row.maxTemperature}} &#8451;</span> <span>{{scope.row.maxCellTemp}} &#8451;</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="minTemperature" prop="minTemperature"
label="单体最低温度"> label="单体最低温度">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{scope.row.minTemperature}} &#8451;</span> <span>{{scope.row.minCellTemp}} &#8451;</span>
</template> </template>
</el-table-column> </el-table-column>