brand-cate.vue 5.95 KB
<template>
    <div class="cate-page" id='cate-page'>
        <div class="cate-nav clearfix">
            <ul>
                <li v-for="(index, cate) in brandCate" v-on:click='cateNavTopFun(index)' v-bind:class="{focus: index === topcurrent}" >
                    <span>{{cate.name}}</span>
                </li>
            </ul>
        </div>
        <div class="cate-container clearfix">
            <div class="content" style="height: 522px;">
                <ul class="primary-level">
                    <li v-for="(index, ca) in cateNavLeftData" v-bind:class="{focus: index === leftcurrent}" class="p-level-item" v-on:click='cateNavLeftFun(index)'>
                        <a href="{{ca.url}}">{{ca.name}}</a>
                    </li>
                </ul>
                <div class="sub-level-container">
                    <ul class="sub-level">
                        <li v-for="sub in cateNavRightData">
                            <a href="{{sub.url}}">{{sub.name}}</a>
                        </li>
                    </ul>
                </div>
            </div>
        </div><!--/end cate-container-->
    </div>
</template>
<style>
.cate-page {
    font-size: 36px;
    font-family: helvetica, Arial, "黑体";

    ul,
    li {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .search-input {
        position: relative;
        background-color: #f8f8f8;
        padding: 13px 20px;

        p {
            box-sizing: border-box;
            width: 100%;
            height: 60px;
            line-height: 60px;
            border: none;
            padding-left: 66px;
            border-radius: 60px;
            font-size: 26px;
            background: #fff;
            color: #999;
        }
    }

    .search-icon {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 43px;
        line-height: 86px;
        color: #999;
    }

    .cate-nav {
        height: 120px;
        border-bottom: 1px solid #e6e6e6;

        li {
            display: block;
            box-sizing: border-box;
            float: left;
            height: 100%;
            padding: 20px 10px;
            width: 25%;
            text-align: center;
            color: #999;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;

            &:last-child {
                border-right: none;
            }

            &.focus {
                color: #000;

                span {
                    border-bottom: 4px solid #000;
                    font-weight: bold;
                }
            }

            &.bytouch {
                background: #eee;
            }
        }

        span {
            line-height: 80px;
            padding-bottom: 10px;
        }

        li:last-child span {
            border-right: 0;
        }
    }

    .content {
        &.hide {
            display: none;
        }
    }

    .primary-level {
        float: left;
        box-sizing: border-box;
        width: 45%;

        > li {
            height: 120px;
            line-height: 120px;
            padding: 0 32px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            border-bottom: 1px solid #e6e6e6;

            &.focus {
                background-color: #fff;

                &:after {
                    content: "";
                    width: 0;
                    height: 0;
                    border-top: 20px solid transparent;
                    border-bottom: 20px solid transparent;
                    border-right: 20px solid #efefef;
                    position: absolute;
                    margin-top: 32px;
                    right: 55%;
                }
            }

            &.highlight {
                background-color: #eee;
            }
        }
    }

    .sub-level-container {
        float: left;
        box-sizing: border-box;
        background: #f6f6f6;
        width: 55%;
        height: 100%;
    }

    .sub-level {
        width: 100%;
        background-color: #f6f6f6;
        position: relative;

        &.hide {
            display: none;
        }

        > li {
            box-sizing: border-box;
            height: 110px;
            line-height: 110px;
            border-bottom: 1px solid #e6e6e6;
            padding-left: 20px;

            &.highlight {
                background: #eee;
            }

            &:hover {
                background-color: #efefef;
            }
        }

        a {
            display: block;
            height: 100%;
            width: 100%;
            color: #000;
        }
    }
}
</style>
<script>
    const $ = require('yoho-jquery');
    const tip = require('common/tip');

    module.exports = {
        props: [],
        data() {
            return {
                brandCate: [],
                cateNavLeftData: [],
                cateNavRightData: [],
                topcurrent: 0,
                leftcurrent: 0
            };
        },
        methods: {
            getCateList() {
                let data = {
                    channel: ''
                };

                $.ajax({
                    url: '/get-cate-list',
                    data: data
                }).then(result => {
                    this.brandCate = result;
                    this.cateNavLeftData = this.brandCate[0].ca;
                    this.cateNavRightData = this.cateNavLeftData[0].sub;
                }).fail(() => {
                    tip('网络错误');
                });
            },
            cateNavTopFun(index) {
                this.topcurrent = index;
                this.cateNavLeftData = this.brandCate[index].ca;
                this.cateNavRightData = this.cateNavLeftData[0].sub;
            },
            cateNavLeftFun(index) {
                this.leftcurrent = index;
                this.cateNavRightData = this.cateNavLeftData[index].sub;
            }
        },
        created() {
            this.getCateList();
        }
    };
</script>