From 0b2c40437bee95ecca2168fb154e675bb9f0d404 Mon Sep 17 00:00:00 2001
From: hsy <1029150275@qq.com>
Date: 星期二, 18 八月 2026 10:33:20 +0800
Subject: [PATCH] refactor: 根据角色标识获取报工人

---
 src/main.ts |   23 ++++++++++++++++-------
 1 files changed, 16 insertions(+), 7 deletions(-)

diff --git a/src/main.ts b/src/main.ts
index dab2d7c..b692f75 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -3,6 +3,10 @@
 
 import { overridesPreferences, preferencesExtension } from './preferences';
 
+declare const __APP_LOGO__: string;
+declare const __APP_FAVICON__: string;
+declare const __APP_NAME__: string;
+
 /**
  * 搴旂敤鍒濆鍖栧畬鎴愪箣鍚庡啀杩涜椤甸潰鍔犺浇娓叉煋
  */
@@ -20,16 +24,21 @@
     overrides: overridesPreferences,
   });
 
-  // 閫氳繃鐜鍙橀噺寮哄埗瑕嗙洊鍏徃 logo 鍜� favicon锛岀粫杩囩紦瀛�
-  const envLogo = import.meta.env.VITE_APP_LOGO;
-  const envFavicon = import.meta.env.VITE_APP_FAVICON;
-  if (envLogo) {
-    preferencesManager.updatePreferences({ logo: { source: envLogo } });
+  // 寮哄埗瑕嗙洊鍏徃 logo 鍜� favicon锛岀粫杩� localStorage 缂撳瓨
+  if (__APP_LOGO__) {
+    preferencesManager.updatePreferences({ logo: { source: __APP_LOGO__ } });
   }
-  if (envFavicon) {
+  // 寮哄埗瑕嗙洊鍏徃鍚嶇О锛岀粫杩� localStorage 缂撳瓨
+  if (__APP_NAME__) {
+    preferencesManager.updatePreferences({
+      app: { name: __APP_NAME__ },
+      copyright: { companyName: __APP_NAME__ },
+    });
+  }
+  if (__APP_FAVICON__) {
     const link = document.querySelector('link[rel="icon"]');
     if (link) {
-      link.setAttribute('href', envFavicon);
+      link.setAttribute('href', __APP_FAVICON__);
     }
   }
 

--
Gitblit v1.9.3