fix:监测数据列表保留三位小数

This commit is contained in:
shijing 2025-05-22 16:05:28 +08:00
parent d720206386
commit deff7a3247
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@
</el-table-column>
<el-table-column label="数值" prop="val_float">
<template #default="scope">
{{ scope.row.val_float.toFixed(2) }}
{{ scope.row.val_float.toFixed(3) }}
</template>
</el-table-column>
</scTable>