From 60a2a15188bdb7d9d0ae9656e35ba89f2df788f8 Mon Sep 17 00:00:00 2001 From: DXC Date: Tue, 12 May 2026 11:57:10 +0800 Subject: [PATCH] =?UTF-8?q?feat(auth):=20=E6=8E=88=E6=9D=83=E5=BC=B9?= =?UTF-8?q?=E7=AA=97=E6=B7=BB=E5=8A=A0=E5=85=AC=E5=8F=B8=E8=81=94=E7=B3=BB?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=EF=BC=8C=E5=88=A0=E9=99=A4=E6=97=A7=E6=8F=90?= =?UTF-8?q?=E7=A4=BA=E8=AF=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/auth/license_dialog.py | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/src/auth/license_dialog.py b/src/auth/license_dialog.py index c030b6b..2d8d04e 100644 --- a/src/auth/license_dialog.py +++ b/src/auth/license_dialog.py @@ -69,15 +69,6 @@ class LicenseDialog(QDialog): title_label.setStyleSheet("color: #2c3e50;") main_layout.addWidget(title_label) - # ── 说明文字 ── - hint_label = QLabel( - "请获取授权文件(license.lic)后导入," - "或联系技术支持获取授权。" - ) - hint_label.setAlignment(Qt.AlignCenter) - hint_label.setStyleSheet("color: #7f8c8d; font-size: 12px;") - main_layout.addWidget(hint_label) - # ── 机器码标签 ── code_label = QLabel("本机机器码(用于申请授权):") code_label.setStyleSheet("font-weight: bold; color: #34495e;") @@ -149,6 +140,14 @@ class LicenseDialog(QDialog): tip_label.setStyleSheet("color: #95a5a6; font-size: 11px;") main_layout.addWidget(tip_label) + # ── 授权公司联系信息 ── + company_label = QLabel( + "请联系授权公司:北京理加联合科技有限公司 或者 北京依锐思遥感技术有限公司" + ) + company_label.setAlignment(Qt.AlignCenter) + company_label.setStyleSheet("color: #e74c3c; font-size: 12px; font-weight: bold;") + main_layout.addWidget(company_label) + # ── 取消按钮(退出程序)── cancel_btn = QPushButton("退出") cancel_btn.setCursor(Qt.PointingHandCursor)