Authored by 郭成尧

'shop-backgroud-img'

... ... @@ -21,6 +21,12 @@ body {
line-height: 1.4;
}
/* stylelint-disable */
.app::-webkit-scrollbar {
display: none;
}
/* stylelint-enable */
a {
outline: none;
color: #000;
... ...
<template>
<div v-if="shopInfo.isBlkShop" class="brand-top-box" v-lazy:background-image="shopInfo.shopBg | resize 750 478">
<div v-if="shopInfo.isBlkShop" class="brand-top-box" v-bind:style="{ background: 'url(' + shopInfo.shopBg + ')' }">
<div class="brand-bottom">
<img v-if="shopInfo.shopLogo" v-lazy="shopInfo.shopLogo.split('?')[0] + '?imageMogr2/thumbnail/{width}x{height}' | resize 120 80" alt="{{ shopInfo.shopName }}">
<img v-if="shopInfo.shopLogo" :src="shopInfo.shopLogo.split('?')[0] + '?imageMogr2/thumbnail/{width}x{height}' | resize 120 80" alt="{{ shopInfo.shopName }}">
<div v-else class="brand-title">{{ shopInfo.shopName }}</div>
<hr>
<div v-show="showMore" transition="brand-intro" :class="{ 'brand-short': !showMore }">{{ shopInfo.shopIntro }}</div>
... ...