diff --git a/src/views/plan/EquipmentStatus.vue b/src/views/plan/EquipmentStatus.vue index 4324ec2..9de6343 100644 --- a/src/views/plan/EquipmentStatus.vue +++ b/src/views/plan/EquipmentStatus.vue @@ -17,8 +17,13 @@
{{ record.axle_number }}
{{ record.specification }}
{{ record.model }}
-
线盘: {{ record.wire_disc || '无' }}
+
线盘: {{ record.raw_wire_disc || '无' }}
完成度: {{ (record.degree_of_completion * 100).toFixed(0) }}%
+
+
总箱数: {{ record.total_number }}
+
总净重: {{ record.total_net_weight }}kg
+
总毛重: {{ record.total_gross_weight }}kg
+
@@ -28,8 +33,13 @@
{{ record.axle_number }}
{{ record.specification }}
{{ record.model }}
-
线盘: {{ record.wire_disc || '无' }}
+
线盘: {{ record.raw_wire_disc || '无' }}
完成度: {{ (record.degree_of_completion * 100).toFixed(0) }}%
+
+
总箱数: {{ record.total_number }}
+
总净重: {{ record.total_net_weight }}kg
+
总毛重: {{ record.total_gross_weight }}kg
+
@@ -291,7 +301,17 @@ const getCompletionClass = (degree) => { font-weight: bold; } +.axle-stock { + margin-top: 6px; + padding-top: 6px; + border-top: 1px dashed #e4e7ed; +} +.stock-item { + font-size: 11px; + color: #606266; + margin-bottom: 2px; +} .no-records { text-align: center;