bms总览接口参数更新

This commit is contained in:
白菜
2025-07-03 21:59:40 +08:00
parent bf92b8010b
commit 21a8871e3c

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>