fix: 将 surfaceTreatment 字段改为 surfaceTreatmentDesc

修复产品信息和原材料信息组件中表面处理字段的命名不一致问题,统一使用 surfaceTreatmentDesc 字段
This commit is contained in:
砂糖
2026-02-06 09:08:14 +08:00
parent f3496bcb95
commit 9aadd6d958
2 changed files with 2 additions and 2 deletions

View File

@@ -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 || '',
};

View File

@@ -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 || '',
};