shop-box.vue 5.54 KB
<template>
    <shop-top v-bind:shop-info="shopInfo"></shop-top>
    <div v-bind:class='{"shop-goods-top": !shopInfo.isBlkShop}'>
        <goods-list v-bind:data="productList"></goods-list>
    </div>
    <filter :config="filterConfig" v-ref:filter></filter>
    <top-bar v-bind:share-data="shareData"></top-bar>
</template>
<style>
    .shop-goods-top {
        margin-top: 140px;
    }
</style>
<script>
    const $ = require('jquery');
    const qs = require('yoho-qs/parse');
    const bus = require('common/vue-bus');
    const tip = require('common/tip');

    const topBar = require('product/shop/top-bar.vue'); // 顶部栏,包括返回、收藏店铺、分享,打开筛选页面
    const shopTop = require('product/shop/shop-top.vue'); // 店铺头部信息
    const goodsList = require('component/product/list.vue');
    const filter = require('component/product/filter.vue');

    const shareSubTitle = '我在BLK发现了一个不错的品牌,赶快来看看吧!';
    let locationQuery = qs(decodeURIComponent(location.search.replace(/^\?/, '')));

    require('common/vue-filter');

    module.exports = {
        data() {
            return {
                shareData: {}, // 分享相关数据
                shopInfo: {}, // 店铺介绍相关数据

                sortConfig: {},
                filterConfig: {},

                // query
                url: '/product/shop/goods.json',
                sort: '',
                filter: {},
                page: 0, // page= 0 未搜索, 1 并且productList.length =0 没有数据, page = page_total 全部加载完
                totalPage: 3,

                // 产品列表
                productList: [],

                // state:
                inSearching: false
            };
        },
        watch: {

            /* sort 和 filter 改变 都会触发 重新搜索 (想象成清空所有分页) */
            sort: function() {
                this.research();
            },
            filter: function() {
                this.research();
            }
        },
        methods: {

            /* 获取店铺简介相关数据 */
            getShopInfo() {
                $.get({
                    url: '/product/shop/info.json',
                    data: {
                        domain: locationQuery.domain
                    }
                }).done(result => {
                    if (result) {
                        this.shopInfo = result;
                        this.shopInfo.showBrandInfo = true;
                        this.shareData = {
                            title: result.shopName,
                            des: shareSubTitle,
                            url: '/product/shop/share?domain=' + locationQuery.domain,
                            img: result.shopBg,
                            isBlkShop: result.isBlkShop,
                            domain: locationQuery.domain,
                            brandName: result.brandName,
                            shopId: result.shopId, // 不是分享的参数,收藏店铺使用
                            isFav: result.isFav // 不是分享的参数,收藏店铺使用
                        };
                    } else {
                        this.shopInfo.showBrandInfo = false;
                    }
                }).fail(() => {
                    tip('网络错误');
                });
            },
            search: function() {
                const self = this;

                if (this.inSearching) {
                    return;
                }
                if (this.page && this.page + 1 > this.totalPage) {
                    return;
                }

                this.inSearching = true;
                this.page++;
                $.post(this.url, Object.assign({
                    order: this.sort,
                    page: this.page
                }, this.filter, locationQuery)).done(result => {
                    this.productList = result.data.productList;
                    this.filterConfig = result.data.filter;
                }).fail(error => {
                    self.page--;
                    console.log(error);
                }).always(() => {
                    self.inSearching = false;
                });
            },

            openFilterSub: function() {
                console.log('TODO: open filter sub');
            },

            /**
             *
             */
            research: function() {
                this.page = 0;
                this.$set('productList', []);
                this.search();
            }
        },
        components: {
            topBar,
            shopTop,
            goodsList,
            filter
        },
        created() {
            const self = this;

            this.getShopInfo();
            this.search();
            bus.$on('list.paging', () => {
                this.search();
            });

            bus.$on('sort.change', ({
                val
            }) => {
                console.log(val);
                this.sort = val;
            });


            /**
             * 筛选组件 筛选值变更,触发 filter.change事件
             *  1. 重新搜索
             *  2. 关闭 filter 组件
             */
            bus.$on('filter.change', function({val}) {
                let filter = {};

                $.each(val, (type, item) => {
                    if (item.id) {
                        filter[type] = item.id;
                    }
                });
                self.$set('filter', filter);
                self.$refs.filter.isVisible = false;
            });
        }
    };

</script>