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