diff --git a/src/views/plan/EquipmentStatus.vue b/src/views/plan/EquipmentStatus.vue index acb882a..f88e99a 100644 --- a/src/views/plan/EquipmentStatus.vue +++ b/src/views/plan/EquipmentStatus.vue @@ -13,7 +13,8 @@
+ :class="[getCompletionClass(record.degree_of_completion), { 'not-running': !record.update_time }]" + @dblclick="showAxleDetails(record, equipment.equipment_code)">
{{ record.axle_number }} (不在运行)
{{ record.specification }}
{{ record.model }}
@@ -29,7 +30,8 @@
+ :class="[getCompletionClass(record.degree_of_completion), { 'not-running': !record.update_time }]" + @dblclick="showAxleDetails(record, equipment.equipment_code)">
{{ record.axle_number }} (不在运行)
{{ record.specification }}
{{ record.model }}
@@ -49,11 +51,76 @@
+ + + +
+
+ 设备编号: + {{ selectedEquipmentCode }} +
+
+ 轴号: + {{ selectedAxle.axle_number }} +
+
+ 运行状态: + + {{ selectedAxle.update_time ? '运行中' : '不在运行' }} + +
+
+ 规格: + {{ selectedAxle.specification || '无' }} +
+
+ 型号: + {{ selectedAxle.model || '无' }} +
+
+ 线盘: + {{ selectedAxle.raw_wire_disc || '无' }} +
+
+ 完成度: + {{ (selectedAxle.degree_of_completion * 100).toFixed(1) }}% +
+
+
库存信息
+
+ 总箱数: + {{ selectedAxle.total_number }} +
+
+ 总净重: + {{ selectedAxle.total_net_weight }}kg +
+
+ 总毛重: + {{ selectedAxle.total_gross_weight }}kg +
+
+
+ 最后更新: + {{ selectedAxle.update_time }} +
+
+ +
\ No newline at end of file