Browse Source

change: layout logo 调整.

peter 7 months ago
parent
commit
10548492d5
1 changed files with 3 additions and 3 deletions
  1. 3 3
      layouts/default.vue

+ 3 - 3
layouts/default.vue

@@ -1,9 +1,8 @@
 <template>
   <div class="com-body">
-    <div style="">
+    <div style="margin-bottom: 56px">
       <img
-        v-show="websitelogo.length"
-        style="margin-bottom: 56px; max-width: 100%; max-height: 100%"
+        style="max-width: 100%; max-height: 100%; opacity: 0"
         :src="`${websitelogo}`"
         alt="Logo-2" />
     </div>
@@ -24,6 +23,7 @@ export default {
   },
   async fetch() {
     await this.$store.dispatch('getShopInfo', 'layout').then(res => {
+      console.log(res.logo, 'layout logo log')
       this.websitelogo = !this.$mediaRegExp.test(res.logo)
         ? this.$OSS_PREFIX +
           (/^\/.+/.test(res.logo) ? res.logo : `/${res.logo}`)