|
@@ -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
|
|
|
}
|
|
|
});
|
|
|
|