home.vue 11.2 KB
<template>
    <cheader title="我的" class="ghost" fixed v-ref:header>
        <i slot="left" class="icon icon-setting" id="setting"></i>
    </cheader>
    <div class="my-header">
        <a class="user-info auth" id="user-info" href='/me/mydetails'>
            <span class="user-avatar" :style="data.headIco ? 'background-image: url(' + data.headIco + ')' : ''"></span>
        </a>
        <span class="username">{{ data.nickName }}</span>
    </div>
    <div class="my-order">
        <a class="order-title auth"  href="/me/order?type=1">
            我的订单
            <span class="read-order">
                查看全部订单 <span class="icon icon-right"></span>
            </span>
        </a>
        <div class="order-type clearfix">
            <a class="type-item auth" href="/me/order?type=2">
                <span class="icon icon-wait-pay"></span>
                <br>待付款
                <span class="num" v-if="data.waitPayNum">{{data.waitPayNum}}</span>
            </a>
            <a class="type-item auth" href='/me/order?type=3'>
                <span class="icon icon-wait-cargo"></span>
                <br>待发货
                <span class="num" v-if="data.waitCargoNum">{{data.waitCargoNum}}</span>
            </a>
            <a class="type-item auth" href="/me/order?type=4">
                <span class="icon icon-send-cargo"></span>
                <br>待收货
                <span class="num" v-if="data.sendCargoNum">{{data.sendCargoNum}}</span>
            </a>
            <a class="type-item auth" href="/me/return">
                <span class="icon icon-refund-exchange"></span>
                <br>退换货
                <span class="num" v-if="data.refundExchangeNum">{{data.refundExchangeNum}}</span>
            </a>
        </div>
    </div>
    <div class="group-list">
        <a class="glist-item auth" id="address">
            地址管理
            <span class="num">{{data.addressNum}}  <span class="icon icon-right"></span></span>
        </a>
    </div>
    <div class="group-list">
        <a class="glist-item auth" href="/me/collection">
            收藏的商品
            <span class="num">{{data.productFavoriteTotal}}  <span class="icon icon-right"></span></span>
        </a>
        <a class="glist-item auth" href="/me/collection?tab=brand">
            收藏的品牌
             <span class="num">{{data.brandFavoriteTotal}}  <span class="icon icon-right"></span></span>
        </a>
    </div>
    <div class="group-list">
        <a class="glist-item auth" href="/me/mycurrency">
            有货币
            <span class="num">{{data.yohoCoinNum}}  <span class="icon icon-right"></span></span>
        </a>
    </div>
    <div class="group-list">
        <a class="glist-item" href="/help">
            帮助中心
            <span class="num"><span class="icon icon-right"></span></span>
        </a>
        <a class="glist-item" href="/me/service">
            在线客服
            <span class="num"><span class="icon icon-right"></span></span>
        </a>
    </div>
</template>

<script>
    const yoho = require('yoho');
    const $ = require('jquery');
    const interceptClick = require('common/intercept-click');
    const cheader = require('component/header.vue');

    module.exports = {
        data() {
            return {
                data: {}
            };
        },
        components: {
            cheader
        },
        methods: {
            reload() {
                $('#address').off('click', this.addressClick);
                $('.auth').off('click', this.authClick);
                $('.auth').removeClass('no-intercept');

                if (yoho.isLogin()) {
                    $.ajax({
                        url: '/me/userdata'
                    }).then(result => {
                        this.data = result || {};
                    });

                    $('#address').on('click', this.addressClick);
                } else {
                    this.data = {
                        nickName: '登录/注册'
                    };

                    $('.auth').addClass('no-intercept');
                    $('.auth').on('click', this.authClick);
                }
            },
            addressClick() {
                yoho.goAddress({
                    type: '2'
                });
                return false;
            },
            authClick(e) {
                const id = $(e.target).attr('id');
                const href = $(e.target).attr('href');

                yoho.goLogin('', () => {
                    this.reload();

                    setTimeout(() => {
                        if (id === 'address') {
                            yoho.goAddress({
                                type: '2'
                            });
                        } else if (href !== '/me/mydetails') {
                            interceptClick.intercept(href);
                        }
                    }, 200);
                });
                return false;
            },
            toggle() {
                let ghost = true;
                let ghost2 = false;
                let ghost3 = false;

                if (window.scrollY > 40) {
                    ghost = false;
                    ghost2 = false;
                    ghost3 = false;
                } else if (window.scrollY > 25) {
                    ghost = false;
                    ghost3 = true;
                } else if (window.scrollY > 10) {
                    ghost = false;
                    ghost2 = true;
                }

                this.$refs.header.$el.classList.toggle('ghost', ghost);
                this.$refs.header.$el.classList.toggle('ghost-2', ghost2);
                this.$refs.header.$el.classList.toggle('ghost-3', ghost3);
            }
        },
        ready() {
            this.reload();

            $('#setting').on('click', function() {
                yoho.goSetting();
                return false;
            });

            window.addEventListener('touchmove', () => {
                this.toggle();
            });

            window.addEventListener('scroll', () => {
                this.toggle();
            });

            document.addEventListener('visibilitychange', () => {
                if (!document.hidden) {
                    this.reload();
                }
            });
        }
    };
</script>

<style>
    .my-page {
        color: #444;
        background: #f0f0f0;

        a {
            color: #000;
        }

        .blk-header-main {
            position: absolute;
            left: 0;
            right: 0;
        }

        .top-box {
            .blk-header {
                background-color: transparent;
                border-bottom: 0;
            }
        }

        .top-change {
            .blk-header {
                background-color: #fff;
            }
        }

        .my-header {
            height: 469px;
            background: resolve("me/header-bg.png");
            background-size: cover;
        }

        .user-info {
            display: block;
            position: relative;
            top: 145px;
            padding: 0 30px;
            margin: 0 180px;
            color: #000;
            font-size: 34px;
            height: 190px;
            text-align: center;

            .user-avatar {
                display: inline-block;
                position: relative;
                width: 170px;
                height: 170px;
                border-radius: 50%;
                margin: 0 auto;

                /* border: 3px solid #b0b0b0; */
                background: resolve("me/user-icon.png");
                background-size: 100%;
            }
        }

        .username {
            display: block;
            text-align: center;
            text-overflow: ellipsis;
            white-space: nowrap;
            font-size: 32px;
            position: relative;
            top: 140px;
        }

        .my-order {
            margin-bottom: 20px;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
            background: #fff;

            .order-title {
                display: block;
                padding: 0 30px;
                font-size: 34px;
                line-height: 88px;
                position: relative;

                &.highlight {
                    background: #eee;
                }

                .read-order {
                    color: #b0b0b0;
                    font-size: 30px;
                    float: right;
                }

                &:after {
                    content: "";
                    position: absolute;
                    left: 0;
                    bottom: 0;
                    width: 92%;
                    height: 0;
                    border-top: 1px solid #eee;
                    margin-left: 28px;
                }
            }

            .order-type {
                padding: 20px 0;
                text-align: center;
                height: 150px;

                .icon {
                    font-size: 45px;
                }

                .type-item {
                    position: relative;
                    float: left;
                    color: #444;
                    font-size: 24px;
                    line-height: 1.5;
                    width: 75px;
                    margin-top: 13px;
                    margin-left: 130px;

                    &.highlight {
                        background: #eee;
                    }

                    &:first-child {
                        margin-left: 34px;
                    }

                    .num {
                        position: absolute;
                        top: -35px;
                        right: -20px;
                        width: 72px;
                        height: 72px;
                        font-size: 34px;
                        line-height: 72px;
                        color: #fff;
                        background: #ff081c;
                        text-align: center;
                        border-radius: 50%;
                        transform: scale(0.5);
                    }
                }
            }
        }

        .group-list {
            margin-bottom: 20px;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
            background: #fff;

            .glist-item {
                display: block;
                position: relative;
                padding: 0 30px;
                font-size: 34px;
                line-height: 88px;
                overflow: hidden;

                &.highlight {
                    background: #eee;
                }

                &:after {
                    content: "";
                    position: absolute;
                    left: 0;
                    bottom: 0;
                    width: 92%;
                    height: 0;
                    border-top: 1px solid #eee;
                    margin-left: 28px;
                }

                &:last-child:after {
                    content: none;
                }
            }

            .icon {
                font-size: 34px;
                vertical-align: top;
            }

            .num {
                color: #b0b0b0;
                float: right;
            }
        }
    }

    .app.ios {
        .blk-header {
            padding-top: 60px;
        }
    }
</style>