fav-product-list.vue 9.35 KB
<template>
    <div class="fav-type" v-infinite-scroll="loadMore()" infinite-scroll-disabled="busy" infinite-scroll-distance="10">
        <ul class="fav-product-list">
            <li v-for="item in productData" track-by="$index" id="li-{{$index}}">
                <div class="fav-del-left {{editmodel ? 'delshow': ''}}" @click="showDelBtn($index)">
                    <span class="fav-del-span"><span class="icon icon-edit-del"></span></span>
                </div>
                <a :href="item.link">
                    <div class="fav-img-box">
                        <img :src="item.imgUrl" alt=""/>
                    </div>
                    <div class="fav-info-list">
                        <span class="title">{{item.title}}</span>
                        <br/>
                        <div class="fav-price">
                            <span class="new-price" v-if="item.discountPrice">{{item.discountPrice}}</span>
                            <span class="{{ item.discountPrice ? 'price-underline' : ''}}">{{item.price}}</span>
                        </div>
                        <br/>
                        <div class="save-price">
                            <span class="sell-out" v-if="item.sellOut || item.invalidGoods">{{item.sellOut ? '已售罄' : '已下架'}}</span>
                        </div>
                    </div>
                </a>
                <div class="fav-del-right hide" id="del-{{$index}}" @click="delItem($index, item.fav_id)">
                    <span class="icon icon-delete"></span>
                    <br/>
                    <span class="fav-del-txt">删除</span>
                </div>
            </li>
        </ul>
        <div class="fav-null-box {{ nullbox }}">
            <span class="fav-null">您暂无收藏任何商品</span>
            <a slot="go-shopping" class="go-shopping" :href="productUrl">随便逛逛</a>
        </div>
    </div>
</template>

<script>
    const $ = require('yoho-jquery');
    const tip = require('common/tip');

    module.exports = {
        props: ['productUrl'],
        data() {
            return {
                nullbox: 'hide',
                busy: false,
                editmodel: false,
                page: 0,
                productData: []
            };
        },
        methods: {
            loadMore: function() {
                let _this = this;

                this.busy = true;
                $.ajax({
                    url: '/home/favorite/favpaging',
                    data: {
                        page: ++_this.page
                    }
                }).then(result => {
                    if (result.isend) {
                        _this.busy = true;
                    } else {
                        _this.busy = false;
                    }

                    if (result.list.length) {
                        result.list.forEach(function(o) {
                            _this.productData.push(o);
                        });
                    }

                    _this.nullbox = _this.productData.length ? 'hide' : '';
                }).fail(() => {
                    tip('网络错误');
                });
            },
            showDelBtn(index) {
                this.hideDelBth();
                let delBtn = $('#del-' + index);
                let width = delBtn.width();

                $('#li-' + index).css('transform', 'translateX(-' + width + 'px)');
                delBtn.removeClass('hide');
            },
            hideDelBth() {
                this.productData.forEach(function(d, index) {
                    $('#li-' + index).css('transform', 'translateX(0px)');
                    $('#del-' + index).addClass('hide');
                });
            },
            delItem(index, id) {
                let _this = this;

                $.ajax({
                    method: 'POST',
                    url: '/home/del-favdel',
                    data: {
                        favId: id,
                        type: 'product'
                    }
                }).then(function(data) {
                    if (data.code === 200) {
                        _this.productData.splice(index, 1);
                        _this.hideDelBth();
                    } else if (data.code === 400) {
                        tip(data.message);
                    } else {
                        tip('刪除收藏失败');
                    }
                }).fail(function() {
                    tip('网络错误');
                });
            }
        },
        created: function() {
            let _this = this;

            yoho.addNativeMethod('editModel', function(action) {
                _this.editmodel = action;
                if (!action) {
                    _this.hideDelBth();
                }
            });
        }
    };
</script>

<style>
    .yoho-favorite-page {
        width: 100%;
        height: auto;

        .fav-content {
            .fav-type {
                display: block;
            }

            .fav-product-list {
                padding-left: 20px;
                list-style: none;

                li {
                    height: 205px;
                    overflow: hidden;
                }

                .fav-del-left {
                    display: none;
                    float: left;
                    width: 50px;
                    height: 100%;

                    .fav-del-span {
                        display: inline-block;
                        width: 35px;
                        height: 35px;
                        margin-right: 15px;
                        margin-top: 80px;
                    }

                    .icon-edit-del {
                        color: red;
                        font-size: 35px;
                    }
                }

                .delshow {
                    display: block;
                }

                .fav-del-right {
                    position: absolute;
                    top: 0;
                    right: -126px;
                    background: #ff3b30;
                    width: 126px;
                    height: 200px;
                    text-align: center;

                    .icon-delete {
                        display: inline-block;
                        color: white;
                        font-size: 35px;
                        margin-top: 55px;
                    }

                    .fav-del-txt {
                        font-size: 24px;
                        color: #fff;
                    }

                    .hide {
                        display: none;
                    }
                }

                .fav-img-box {
                    width: 152px;
                    height: 203px;
                    float: left;
                    margin-right: 24px;

                    img {
                        display: block;
                        overflow: hidden;
                        width: 100%;
                        height: 100%;
                    }
                }

                .fav-info-list {
                    color: #444;
                    font-size: 24px;
                    border-bottom: 1px solid #e0e0e0;
                    padding-bottom: 20px;
                    height: 203px;
                    overflow: hidden;
                    position: relative;

                    .title {
                        width: 430px;
                        text-overflow: ellipsis;
                        font-size: 28px;
                        margin: 0;
                    }

                    .fav-price {
                        margin-top: 20px;
                    }

                    .new-price {
                        color: #d1021c;
                        font-size: 24px;
                    }

                    .price-underline {
                        text-decoration: line-through;
                        margin-left: 15px;
                        color: #b0b0b0;
                        font-size: 24px;
                    }

                    .save-price {
                        position: absolute;
                        bottom: 20px;
                        left: 0;
                        width: 100%;
                        min-height: 24px;
                    }

                    .sell-out {
                        float: right;
                        padding: 5px 18px;
                        color: #b0b0b0;
                        border-radius: 20px;
                        font-size: 22px;
                    }
                }
            }

            .fav-null {
                font-size: 22px;
                color: #444;
                display: block;
                margin-top: 100px;
                text-align: center;

                &:before {
                    content: "";
                    display: block;
                    width: 188px;
                    height: 171px;
                    background: resolve("home/fav-null.png");
                    background-size: 100% 100%;
                    margin: 0 auto 45px;
                }
            }

            .go-shopping {
                width: 472px;
                height: 88px;
                line-height: 88px;
                margin: 80px auto 0;
                background: #444;
                text-align: center;
                color: #fff;
                display: block;
                font-size: 26px;
                border-radius: 0.2rem;
            }
        }
    }
</style>