brand-list.vue 4.37 KB
<template>
    <div class="brand-list-box">
        <div v-for="(item, index) in brandList" :key="index" class="per-brand-box">
            <div class="index"><a :href="'#' + item.index" :id="item.index" :name="item.index">{{item.index}}</a></div>
            <div class="brand-big-box clearfix">
                <div class="brand-box" v-for="brand in item.brands" :key="brand.name">
                    <a v-brand-href.shop="brand">
                        <span class="brand-name">{{brand.name}}</span>
                    </a>
                </div>
            </div>
        </div>
        <side-index class="index-list" :index-list="indexList" @loc-index="locIndex"></side-index>
    </div>
</template>
<style>
    .brand-list-box {
        width: 100%;
        background: #f6f6f6;

        /* border-top: 1px solid #eee; */

        .per-brand-box {
            background: #fff;

            /* padding: 0 30px; */

            /* border-top: 1px solid #eee; */

            /* border-bottom: 1px solid #eee; */

            &:not(:first-of-type) {
                /* margin-top: 20px; */
            }

            .index {
                height: 60px;
                line-height: 60px;
                background-color: #f6f7f6;
                padding: 0 30px;
                font-family: "SanFranciscoText-Medium";

                a {
                    font-size: 32px;
                }
            }
        }

        .brand-big-box {
            width: 100%;
        }

        .brand-box {
            width: 100%;
            height: 80px;
            line-height: 80px;
            border-bottom: 1px solid #f6f6f6;
            box-sizing: border-box;

            /* float: left; */

            overflow: hidden;

            /* text-align: center; */

            .brand-logo {
                margin: 0 auto;
                width: 136px;
                height: 136px;
                overflow: hidden;

                img {
                    width: 100%;
                }
            }

            .brand-name {
                /* width: 136px; */

                font-size: 28px;
                color: #000;
                overflow: hidden;

                /* white-space: nowrap; */

                /* text-overflow: ellipsis; */

                display: inline-block;
                padding: 0 30px;
                font-family: "SanFranciscoText-Regular" !important;
                font-weight: normal;
            }

            a {
                height: 100%;
                width: 100%;
                display: inline-block;
                font-weight: bold;
            }
        }
    }
</style>
<script>
    import $ from 'jquery';
    import bus from 'common/vue-bus';
    import tip from 'common/tip';
    import sideIndex from 'component/tool/side-index.vue';

    export default {
        props: ['channel'],
        data() {
            return {
                brandList: [],
                indexList: [],
                currentChannel: this.channel,
            };
        },
        watch: {
            channel(val) {
                this.currentChannel = val;
                this.getBrandList();
            }
        },
        methods: {
            getBrandList() {
                let data = {
                    channel: this.currentChannel
                };

                $.ajax({
                    url: '/brand/list.json',
                    data: data
                }).then(result => {
                    this.brandList = result.brandList;
                    this.indexList = result.indexList;
                }).fail(() => {
                    tip('网络错误');
                });
            },
            locIndex(index) {
                let $el = document.querySelector(`a[name="${index}"]`);

                if ($el) {
                    let top = document.querySelector(`a[name=${index}]`).offsetTop;
                    let header = document.querySelector('.blk-header');

                    if (header) {
                        top -= header.clientHeight + 2;
                    }
                    window.scrollTo(0, top);
                }
            }
        },
        components: {
            sideIndex
        },
        created() {
            this.getBrandList();
            bus.$on('channel.change', (page, channel) => {
                this.currentChannel = channel;
                this.getBrandList();
            });
        }
    };
</script>