|
@@ -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
|