From c9857326c6dad343b1e436f62a2d7bffda1cb9af Mon Sep 17 00:00:00 2001
From: GGJ <357021191@qq.com>
Date: Mon, 10 Mar 2025 16:11:08 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=20=E6=A3=80=E6=B5=8B?=
=?UTF-8?q?=E8=84=9A=E6=9C=AC=E5=8F=82=E8=80=83=E5=80=BC?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../src/views/machine/testScript/components/setValueTable.vue | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
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 })