From f0217d2305b8aa5acbb3df6ca146bc6554b9e61f Mon Sep 17 00:00:00 2001 From: Rui_Li <877258667@qq.com> Date: Wed, 2 Jul 2025 14:34:00 +0800 Subject: [PATCH] =?UTF-8?q?=E5=89=8D=E7=AB=AF=E5=B7=A5=E5=85=B7=E5=B1=9E?= =?UTF-8?q?=E6=80=A7=20=20=E9=80=9A=E7=94=A8=E6=A8=A1=E6=9D=BFBUG?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/tooling/components/orderProperties.vue | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/views/modules/tooling/components/orderProperties.vue b/src/views/modules/tooling/components/orderProperties.vue index bcf1b61..d9c7266 100644 --- a/src/views/modules/tooling/components/orderProperties.vue +++ b/src/views/modules/tooling/components/orderProperties.vue @@ -55,7 +55,8 @@
- +
@@ -333,10 +334,17 @@ export default { if (!this.attributeDialog){ this.updateTestPropertiesList(); }else { + //针对null 处理 + for (let i = 0; i < this.dataList.length; i++){ + if (this.dataList[i].numValue == null){ + this.dataList[i].numValue = undefined; + } + } this.copyAttributeList = JSON.parse(JSON.stringify(this.dataList)) this.attributeDialog = false; } }, + updateTestPropertiesList(){ this.loading = true updatePropertiesList(this.copyAttributeList).then(({data})=>{