From 9aadd6d9588d3a5820973968885bff6f26a6dd34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A0=82=E7=B3=96?= Date: Fri, 6 Feb 2026 09:08:14 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=B0=86=20surfaceTreatment=20=E5=AD=97?= =?UTF-8?q?=E6=AE=B5=E6=94=B9=E4=B8=BA=20surfaceTreatmentDesc?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修复产品信息和原材料信息组件中表面处理字段的命名不一致问题,统一使用 surfaceTreatmentDesc 字段 --- klp-ui/src/components/KLPService/Renderer/ProductInfo.vue | 2 +- klp-ui/src/components/KLPService/Renderer/RawMaterialInfo.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/klp-ui/src/components/KLPService/Renderer/ProductInfo.vue b/klp-ui/src/components/KLPService/Renderer/ProductInfo.vue index 7f9eec61..bc05b4e0 100644 --- a/klp-ui/src/components/KLPService/Renderer/ProductInfo.vue +++ b/klp-ui/src/components/KLPService/Renderer/ProductInfo.vue @@ -69,7 +69,7 @@ export default { productCode: this.product.productCode || '', specification: this.product.specification || '', material: this.product.material || '', - surfaceTreatment: this.product.surfaceTreatment || '', + surfaceTreatment: this.product.surfaceTreatmentDesc || '', zincLayer: this.product.zincLayer || '', manufacturer: this.product.manufacturer || '', }; diff --git a/klp-ui/src/components/KLPService/Renderer/RawMaterialInfo.vue b/klp-ui/src/components/KLPService/Renderer/RawMaterialInfo.vue index 927a002a..8ba74d8e 100644 --- a/klp-ui/src/components/KLPService/Renderer/RawMaterialInfo.vue +++ b/klp-ui/src/components/KLPService/Renderer/RawMaterialInfo.vue @@ -61,7 +61,7 @@ export default { rawMaterialCode: this.material.rawMaterialCode || '', specification: this.material.specification || '', material: this.material.material || '', - surfaceTreatment: this.material.surfaceTreatment || '', + surfaceTreatment: this.material.surfaceTreatmentDesc || '', zincLayer: this.material.zincLayer || '', manufacturer: this.material.manufacturer || '', };