Browse Source

Update logo and title in login component for AdWeb V3

zq940222 3 months ago
parent
commit
73a21aa347

BIN
src/assets/loginmini/icon/adweb-logo.png


+ 2 - 2
src/hooks/setting/index.ts

@@ -32,8 +32,8 @@ export const useGlobSetting = (): Readonly<GlobConfig> => {
     shortTitle = '苏豪通';
     title = '苏豪通'; // Use the imported image for this domain
   } else {
-    shortTitle = 'AdWeb';
-    title = 'AdWeb'; // Use the imported image for other domains
+    shortTitle = 'AdWeb V3';
+    title = 'AdWeb V3'; // Use the imported image for other domains
   }
   // Take global configuration
   const glob: Readonly<GlobConfig> = {

+ 13 - 2
src/views/system/loginmini/Login.vue

@@ -5,7 +5,7 @@
         <div :class="prefixCls">
           <div style="margin:50px">
             <div>
-              <img width="233px" :src="logo" alt="jeecg" />
+              <img :width="width" :src="logo" alt="jeecg" />
             </div>
           </div>
         </div>
@@ -113,7 +113,18 @@ const title = computed(() => {
   if (domain.includes('sohoeb2b')) {
     return '苏豪通'; // Use the imported image for this domain
   } else {
-    return 'AdWeb'; // Use the imported image for other domains
+    return 'AdWeb V3'; // Use the imported image for other domains
+  }
+});
+
+const width = computed(() => {
+  const domain = window.location.hostname;
+
+  // TODO:: 待域名申请
+  if (domain.includes('sohoeb2b')) {
+    return '233px'; // Use the imported image for this domain
+  } else {
+    return '550px'; // Use the imported image for other domains
   }
 });