feat: 更新加载对话框,将托盘号相关文本修改为包装号,以提高用户界面的准确性

This commit is contained in:
zhu-mengmeng 2025-06-22 01:30:48 +08:00
parent 0b2eb87a6d
commit c6d101f65c
2 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@ -119,7 +119,7 @@ class LoadingDialogUI(QDialog):
row2 = QHBoxLayout()
row2.setSpacing(0)
self.tray_label = QLabel("托盘")
self.tray_label = QLabel("包装")
self.tray_label.setFont(self.normal_font)
self.tray_label.setStyleSheet(label_style)
self.tray_label.setFixedWidth(100)
@ -127,7 +127,7 @@ class LoadingDialogUI(QDialog):
self.tray_input = QLineEdit()
self.tray_input.setFont(self.normal_font)
self.tray_input.setPlaceholderText("请扫描托盘")
self.tray_input.setPlaceholderText("请扫描包装")
self.tray_input.setStyleSheet(input_style)
self.tray_input.setFixedHeight(45)