修改标题logo新增锌层厚度字段

This commit is contained in:
2025-12-30 18:00:48 +08:00
parent 6f02ef0b6b
commit 0ed7f0498a
5 changed files with 18 additions and 3 deletions

View File

@@ -115,6 +115,8 @@
<!-- 拉伸试验 -->
<th colspan="2" style="width: 8%;">Zinc-coating & Cold Bend</th>
<!-- 锌层冷弯 -->
<th style="width: 6%;">Zinc Coating Thickness</th>
<!-- 锌层厚度 -->
<th colspan="2" style="width: 8%;">Hardness</th>
<!-- 硬度 -->
<th rowspan="2" style="width: 6%;">Coating Weight (g/)</th>
@@ -150,6 +152,8 @@
<!-- 类型 -->
<th style="width: 4%;">Value</th>
<!-- -->
<th style="width: 6%;">Thickness</th>
<!-- 厚度 -->
<th style="width: 4%;">Types</th>
<!-- 类型 -->
<th style="width: 4%;">Value</th>
@@ -177,6 +181,7 @@
<td>{{ formatNumber(coil.rValue) }}</td>
<td>{{ coil.zincCoatingType || '-' }}</td>
<td>{{ coil.zincCoatingValue || '-' }}</td>
<td>{{ formatNumber(coil.zincCoatingThickness) }}</td>
<td>{{ coil.hardnessType || '-' }}</td>
<td>{{ coil.hardnessValue || '-' }}</td>
<td>{{ formatNumber(coil.coatingWeight) }}</td>
@@ -349,6 +354,7 @@ export default {
rValue: coil.rValue || '-',
zincCoatingType: coil.zincCoatingType || '-',
zincCoatingValue: coil.zincCoatingValue || (coil.weightTop && coil.weightBottom ? 'Qualified' : '-'),
zincCoatingThickness: coil.zincCoatingThickness || coil.zincCoatingThickness || '-', // 添加锌层厚度字段
hardnessType: coil.hardnessType || '-',
hardnessValue: coil.hardnessValue || '-',
coatingWeight: coil.coatingWeight || coil.weightTop || '-',