shop-top.vue 2.91 KB
<template>
    <div v-if="shopInfo.isBlkShop" class="brand-top-box" v-lazy:background-image="shopInfo.shopBg | resize 750 478">
        <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 }}">
            <div v-else class="brand-title">{{ shopInfo.shopName }}</div>
            <hr>
            <div v-show="showMore" transition="brand-intro" v-bind:class="{ 'brand-short': !showMore }">{{ shopInfo.shopIntro }}</div>
        </div>
        <div v-if="!showMore" class="showmore expand" @click="introTrans()"><span class="icon">&#xe602;</span></div>
        <div v-else class="showmore collapse" @click="introTrans()"><span class="icon">&#xe617;</span></div>
    </div>
</template>
<style>
    .brand-top-box {
        width: 100%;
        height: 468px;
        color: #fff;
        background-color: #ccc;
        position: relative;
        background-size: cover;

        .brand-bottom {
            width: 100%;
            position: absolute;
            bottom: 20px;
            padding: 0 30px;

            .brand-title {
                font-weight: 700;
                font-size: 32px;
                margin: 5px 0;
                overflow: hidden;
                white-space: nowrap;
                text-overflow: ellipsis;
                width: 100%;
            }

            hr {
                width: 100%;
                border: #fff solid 1px;
                border-top: none;
                margin: 5px 0;
            }

            .brand-intro-transition {
                transition: all 0.3s ease;
                font-size: 20px;
                line-height: 32px;
                width: 90%;
                height: 220px;
                overflow-y: auto;
            }

            .brand-intro-enter,
            .brand-intro-leave {
                height: 60px;
            }

            .brand-short {
                height: 60px !important;
                display: -webkit-box !important;
                font-size: 20px;
                line-height: 32px;
                width: 90%;
                text-overflow: ellipsis;
                overflow-y: hidden;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
            }
        }

        .showmore {
            width: 60px;
            height: 60px;
            position: absolute;
            bottom: 10px;
            right: 30px;
            font-size: 32px;
        }
    }
</style>
<script>
    module.exports = {
        props: {
            shopInfo: {
                type: Object
            }
        },
        data() {
            return {
                showMore: false
            };
        },
        methods: {
            introTrans() {
                this.showMore = this.showMore !== true;
            }
        }
    };
</script>