fix bug(解决了料斗进度显示问题,目前的料斗装满总重量设置为6000kg)

This commit is contained in:
2025-11-06 14:05:39 +08:00
parent d2603cec4d
commit 5eedd77c8f
2 changed files with 12 additions and 9 deletions

View File

@ -112,8 +112,8 @@ class ConveyorSystemWidget(QWidget):
def setConveyorHopperWeight(self, weight:float):
# 1、更新传送带中的 上料斗内部进度显示
# 假设上料斗装满之后,总的重量为 5100kg
total_weight = 5100
# 假设上料斗装满之后,总的重量为 5100kg (褚工说设置为 6000kg 11/6)
total_weight = 6000
self._update_upper_inner_height(total_weight, weight)
def create_conveyor(self):