|
|
<template>
|
|
|
<div v-if="shopInfo.isBlkShop" class="brand-top-box" v-bind:style="{ 'background-image': `url(${shopInfo.brandBg})` }">
|
|
|
<div class="brand-bottom">
|
|
|
<img v-if="shopInfo.brandLogo" v-lazy="brandIntro.brandLogo" alt="{{ shopInfo.brandName }}">
|
|
|
<img v-if="shopInfo.brandLogo" v-lazy="shopInfo.brandLogo | resize 80 80" alt="{{ shopInfo.brandName }}">
|
|
|
<div v-else class="brand-title">{{ shopInfo.brandName }}</div>
|
|
|
<hr>
|
|
|
<div v-show="showMore" transition="brand-intro" v-bind:class="{ 'brand-short': !showMore }">{{ shopInfo.brandIntro }}</div>
|
...
|
...
|
|