diff --git a/frontend/src/views/machine/testScript/components/setValueTable.vue b/frontend/src/views/machine/testScript/components/setValueTable.vue
index d351766..bd17187 100644
--- a/frontend/src/views/machine/testScript/components/setValueTable.vue
+++ b/frontend/src/views/machine/testScript/components/setValueTable.vue
@@ -33,7 +33,7 @@
- {{ row.value }}
+ {{ parseFloat((row.value - 0).toFixed(4)) || '' }}
@@ -132,7 +132,6 @@ const form = ref({
// 打开弹窗,可能是新增,也可能是编辑
const open = async (row: any, copyRowList: any) => {
-
let treeData: any = []
await getDictTreeByCode({
name: '',
@@ -233,6 +232,7 @@ defineExpose({ open, getTableData })