From 1dd41e716f07af2f846e2edbef7a8e81de779006 Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期五, 14 八月 2026 17:53:11 +0800
Subject: [PATCH] fix: MOM 1.公司部署修改
---
src/main.ts | 26 ++++++++++++++++++++++++--
1 files changed, 24 insertions(+), 2 deletions(-)
diff --git a/src/main.ts b/src/main.ts
index 3189674..b692f75 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -1,7 +1,11 @@
-import { initPreferences } from './packages\preferences\src';
-import { unmountGlobalLoading } from './packages\utils\src';
+import { initPreferences, preferencesManager } from './packages/preferences/src';
+import { unmountGlobalLoading } from './packages/utils/src';
import { overridesPreferences, preferencesExtension } from './preferences';
+
+declare const __APP_LOGO__: string;
+declare const __APP_FAVICON__: string;
+declare const __APP_NAME__: string;
/**
* 搴旂敤鍒濆鍖栧畬鎴愪箣鍚庡啀杩涜椤甸潰鍔犺浇娓叉煋
@@ -20,6 +24,24 @@
overrides: overridesPreferences,
});
+ // 寮哄埗瑕嗙洊鍏徃 logo 鍜� favicon锛岀粫杩� localStorage 缂撳瓨
+ if (__APP_LOGO__) {
+ preferencesManager.updatePreferences({ logo: { source: __APP_LOGO__ } });
+ }
+ // 寮哄埗瑕嗙洊鍏徃鍚嶇О锛岀粫杩� 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', __APP_FAVICON__);
+ }
+ }
+
// 鍚姩搴旂敤骞舵寕杞�
// vue搴旂敤涓昏閫昏緫鍙婅鍥�
const { bootstrap } = await import('./bootstrap');
--
Gitblit v1.9.3