wfansh 3 ماه پیش
والد
کامیت
7098343762

+ 7 - 9
src/components/Application/src/AppLogo.vue

@@ -57,15 +57,13 @@
   }
 
   const logo = computed(() => {
-  const domain = window.location.hostname;
-
-  // TODO:: 待域名申请
-  if (domain.includes('sohoeb2b')) {
-    return logoImg; // Use the imported image for this domain
-  } else {
-    return adwebLogoImg; // Use the imported image for other domains
-  }
-});
+    // TODO:: 待域名申请
+    if (window.location.hostname.includes('sohoeb2b')) {
+      return logoImg; // Use the imported image for this domain
+    } else {
+      return adwebLogoImg; // Use the imported image for other domains
+    }
+  });
 </script>
 <style lang="less" scoped>
   @prefix-cls: ~'@{namespace}-app-logo';

+ 2 - 2
src/components/jeecg/AiChat/components/chatMessage.vue

@@ -37,8 +37,8 @@
     return getFileAccessHttpUrl(userInfo?.avatar)|| defaultAvatar;
   };
   const isSohoeb2bDomain = computed(() => {
-  return window.location.hostname.includes('sohoeb2b');
-});
+    return window.location.hostname.includes('sohoeb2b');
+  });
 </script>
 
 <style lang="less" scoped>

+ 7 - 16
src/views/system/loginmini/Login.vue

@@ -95,11 +95,11 @@ const randCodeData = reactive<any>({
   checkKey: null,
 });
 
-const backgroundImage = computed(() => {
-  const domain = window.location.hostname;
+// TODO:: 待域名申请
+const isSohoeb2bDomain = () => window.location.hostname.includes('sohoeb2b');
 
-  // TODO:: 待域名申请
-  if (domain.includes('sohoeb2b')) {
+const backgroundImage = computed(() => {
+  if (isSohoeb2bDomain()) {
     return sohoImage; // Use the imported image for this domain
   } else {
     return adwebImage; // Use the imported image for other domains
@@ -107,10 +107,7 @@ const backgroundImage = computed(() => {
 });
 
 const title = computed(() => {
-  const domain = window.location.hostname;
-
-  // TODO:: 待域名申请
-  if (domain.includes('sohoeb2b')) {
+  if (isSohoeb2bDomain()) {
     return '苏豪通'; // Use the imported image for this domain
   } else {
     return 'AdWeb V3'; // Use the imported image for other domains
@@ -118,10 +115,7 @@ const title = computed(() => {
 });
 
 const width = computed(() => {
-  const domain = window.location.hostname;
-
-  // TODO:: 待域名申请
-  if (domain.includes('sohoeb2b')) {
+  if (isSohoeb2bDomain()) {
     return '233px'; // Use the imported image for this domain
   } else {
     return '300px'; // Use the imported image for other domains
@@ -129,10 +123,7 @@ const width = computed(() => {
 });
 
 const logo = computed(() => {
-  const domain = window.location.hostname;
-
-  // TODO:: 待域名申请
-  if (domain.includes('sohoeb2b')) {
+  if (isSohoeb2bDomain()) {
     return logoImg; // Use the imported image for this domain
   } else {
     return AdweblogoImg; // Use the imported image for other domains