goodsDetail.html 6.32 KB
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title></title>
    <script type="text/javascript">
        (function(d,c){var e=d.documentElement,a="orientationchange" in window?"orientationchange":"resize",b=function(){var f=e.clientWidth;if(!f){return}if(f>=750){e.style.fontSize="40px"}else{e.style.fontSize=40*(f/750)+"px"}};if(!d.addEventListener){return}b();c.addEventListener(a,b,false);d.addEventListener("DOMContentLoaded",b,false)})(document,window);
    </script>
    <link href="https://cdn.yoho.cn/ufo/1.0.1/css/swiper-4.4.1.min.css" rel="stylesheet" type="text/css"/>
    <link href="https://cdn.yoho.cn/ufo/1.0.1/css/goodsDetail.css" rel="stylesheet" type="text/css"/>
    <script type="text/javascript" src="http://res.wx.qq.com/open/js/jweixin-1.1.0.js"></script>
</head>
<body>
    <div class="top-downloadbar" id="top-downloadbar">
        <a href="javascript:void(0);" class="download-close" id="download-close"></a>
        <span class="download-icon"></span>
        <span class="download-text">Yoho!Buy有货</span>
        <p class="download-text-desc">新用户送惊喜礼包</p>
        <a class="download-go" id="download-go" href=''>立即打开</a>
    </div>
    <div class="goods-detail-page">
        <div class="head">
            <div class="swiper-pagination"></div>
        </div>
        <div class="swiper-container">
            <div class="swiper-wrapper">
            </div>
            
        </div>

        <h2 class="goods-title"></h2>
        <ul class="goods-info">
            <li>
                <div class="label">颜色</div>
                <div class="cont color"></div>
            </li>
            <li>
                <div class="label">品牌</div>
                <div class="cont brand-name"></div>
            </li>
            <li>
                <div class="label">系列</div>
                <div class="cont series-name"></div>
            </li>
            <li>
                <div class="label">发货时间</div>
                <div class="cont sale-time"></div>
            </li>
            <li>
                <div class="label">货号</div>
                <div class="cont product-code"></div>
            </li>
        </ul>

        <img src="https://cdn.yoho.cn/ufoapp/productdetail/service.png" class="goods-dec">
    </div>
        
    
    <script src="https://cdn.yoho.cn/ufo/1.0.1/js/jquery-1.11.3.min.js" type="text/javascript"></script>
    <script src="https://cdn.yoho.cn/ufo/1.0.1/js/swiper-4.4.1.min.js" type="text/javascript"></script>
    <script src="https://cdn.yoho.cn/ufo/1.0.1/js/share.js"></script>
    <script>
        function getUrlParam(name) {
            var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
            var r = window.location.search.substr(1).match(reg);

            if (r != null) {
                return unescape(r[2]);
            }

            return null; 
        }

        function getImgUrl(src, width = 300, height = 300, mode = 2) {
            return src ? src.replace(/(\{width}|\{height}|\{mode})/g, function($0) {
                const dict = {
                    '{width}': width,
                    '{height}': height,
                    '{mode}': mode || 2
                };

                return dict[$0];
            }).replace(/https?:/, '') : '';
        };

        $(function() {
            var productId = getUrlParam('id');
            var ajaxUrl = location.pathname.indexOf('ufo-gateway') > -1 ? '/ufo-gateway' : '/';

            $('.download-go').attr('href', 'https://union.yoho.cn/union/app-downloads.html?openby:yohobuy={"action":"go.ufo","params":{"pagename":"productDetail","productId":' + productId + '}}')

            $('.download-close').on('click', function() {
                $('.top-downloadbar').hide();
            });

            $.get(ajaxUrl, {
                method: 'ufo.product.data',
                product_id: productId
            }, function(ret) {
                if (ret && ret.code == 200) {
                    var data = ret.data && ret.data.product_info || {};
                    var goodsList = data.goods_list && data.goods_list[0] || {};

                    $('.color').html(goodsList.color_name || '');
                    $('.brand-name').html(data.brand_name || '');
                    $('.series-name').html(data.series_name || '');
                    $('.sale-time').html(data.sale_time || '');
                    $('.product-code').html(data.product_code || '');
                    $('.goods-title').html(data.product_name || '');
                    $('title').html(data.product_name || '商品详情');

                    goodsList.image_list.map(function(item) {
                        if(item.image_url) {
                            $('.swiper-wrapper').append('<div class="swiper-slide"><img src="' + getImgUrl(item.image_url, 750, 750) + '"></div>');
                        }
                    });

                    if ($('.swiper-slide').length > 0) {
                        new Swiper('.swiper-container', {
                            autoplay: true,
                            pagination: {
                                el: '.swiper-pagination',
                                type: 'fraction',
                                renderFraction: function (currentClass, totalClass) {
                                return '<span class="' + currentClass + '"></span>' +
                                        '|' +
                                        '<span class="' + totalClass + '"></span>';
                                }
                            }
                        });
                    }

                    var shareImg = '';

                    if (goodsList && goodsList.image_list && goodsList.image_list.length > 0) {
                        shareImg = getImgUrl(goodsList.image_list[0].image_url);
                    }

                    share({
                        shareTitle: data.product_name + '-UFO潮流好物',
                        shareDesc: '我在UFO飞碟好物发现了一件超棒的商品,戳进来看>>>',
                        shareImg: 'http:' + shareImg,
                        shareLink: location.href
                    })
                }
            })
        });
    </script>
</body>
</html>