Imitation US Mission details page and shopping cart source code - Order Page

An overall view of the project

The first is order.html

<!DOCTYPE html>
<html>
<head>
    <title>订单</title>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
    <script type="text/javascript">
        (function () {
            var docEl = document.documentElement;
            functionsetRemUnit () {
                 // acquired reference value rem 
                var rem = docEl.clientWidth /  10 ;
                 // set dynamically root element html-size font 
                docEl.style.fontSize = rem +  ' PX ' ; 
            } 
            setRemUnit (); 
            / / triggered when the window size changes 
            window.addEventListener ( ' of a resize ' , setRemUnit);
             // window appears in the current screen (with a browser compatibility) 
            window.addEventListener ( ' pageshow ' , function(e){
                if (e.persisted) {
                    setRemUnit();
                }
            });
        })();
    </script>
    <link rel="stylesheet" type="text/css" href="../lib/reset.css">
    <link rel="stylesheet" type="text/css" href="./header/header.css">
    <link rel="stylesheet" type="text/css" href="./contentList/contentList.css">
   <link the rel = "this stylesheet" type = "text / CSS" the href = "../ Common / bottomBar / bottomBar.css" > 
</ head > 
< body > 
    <-! Head Start -> 
    < div class = "header " > Order </ div > 
    <! - head end -> 
    <! - the list of orders start -> 
    < div class =" wrap " > 
        < div class =" the Order-list " > </ div > 
        <div class = "loading" > Loading</ Div > 
    </ div > 
    <! - Orders End of list -> 
    <! - the bottom bar to start -> 
    < div class = "bottom-bar" > </ div > 
    <! - end of the bottom bar - -> 
    < Script type = "text / JavaScript" the src = "../ lib / jquery.min.js" > </ Script > 
    < Script type = "text / JavaScript" the src = "./ ContentList / contentList.js" > </ Script > 
    <script type="text/javascript" src="../common/bottomBar/bottomBar.js"></script>
</body>
</html>

reset.css and bottomBar.css with the same home

Then head style header.css Order Page

.header {
    width: 100%;
    height: 1.706667rem;
    background-color: #fff;
    border-bottom: 1px solid #b2b2b2;
    font-size: 0.453333rem;
    color: #333;
    text-align: center;
    line-height: 1.706667rem;
    font-weight: bold;
}

Orders page list style contentList.css

.order-item {
    border-top:0.346667rem solid #efefef;
}
.order-item .order-item-inner {
    display: flex;
    padding-bottom: 0.48rem;
    border-bottom: 1px solid #e0e0e0;
}
.order-item .item-img {
    width: 1.066667rem;
    height: 1.066667rem;
    margin-top: 0.213333rem;
    margin-left: 0.426667rem;
    display: block;
    border-radius: 50%;
}
.order-item .item-right {
    flex: 1;
    margin-left: 0.4rem;
    font-size: 0.373333rem;
}
.order-item .item-top {
    height: 1.466667rem;
    padding-top: 0.053333rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}
.order-item .order-name {
    font-size: 0.426667rem;
    width: 4.8rem;
    height: 0.426667rem;
    font-weight: 600;
}
.order-item .arrow {
    width: 0.213333rem;
    height: 0.213333rem;
    border: 1px solid #999;
    border-width: 1px 1px 0 0;
    transform: rotate(45deg);
    -webkit-transform: 45deg;
}
.order-item .order-state {
    font-size: 0.373333rem;
    margin-left: 1.066667rem;
    color: #999;
}
.order-item .product-item {
    font-size: 0.373333rem;
    color: #666;
    margin-top: 0.32rem;
}
.order-item .p-conunt {
    float: right;
    margin-right: 0.4rem;
}
.order-item .p-total-count {
    float: right;
    margin-right: 0.4rem;
    font-size: 0.32rem;
}
.order-item .total-price {
    font-size: 0.373333rem;
    color: #151515;
    margin-left: 0.053333rem;
    letter-spacing: 0.026667rem;
}
.order-item .evaluation {
    padding-top: 0.266667rem;
    padding-bottom: 0.266667rem;
}
.order-item .evaluation-btn {
    float: right;
    width: 2.666667rem;
    height: 0.853333rem;
    color: #6b450a;
    background-color: #ffd161;
    font-size: 0.373333rem;
    line-height: 0.853333rem;
    text-align: center;
    margin-right: 0.266667rem;
}

.loading {
    padding-top: 0.266667rem;
    padding-bottom: 0.266667rem;
    font-size: 0.426667rem;
    text-align: center;
    color: #ccc;
}
.wrap {
    padding-bottom: 2.666667rem;
}

Orders page list contentList.js

.order-item {
    border-top:0.346667rem solid #efefef;
}
.order-item .order-item-inner {
    display: flex;
    padding-bottom: 0.48rem;
    border-bottom: 1px solid #e0e0e0;
}
.order-item .item-img {
    width: 1.066667rem;
    height: 1.066667rem;
    margin-top: 0.213333rem;
    margin-left: 0.426667rem;
    display: block;
    border-radius: 50%;
}
.order-item .item-right {
    flex: 1;
    margin-left: 0.4rem;
    font-size: 0.373333rem;
}
.order-item .item-top {
    height: 1.466667rem;
    padding-top: 0.053333rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}
.order-item .order-name {
    font-size: 0.426667rem;
    width: 4.8rem;
    height: 0.426667rem;
    font-weight: 600;
}
.order-item .arrow {
    width: 0.213333rem;
    height: 0.213333rem;
    border: 1px solid #999;
    border-width: 1px 1px 0 0;
    transform: rotate(45deg);
    -webkit-transform: 45deg;
}
.order-item .order-state {
    font-size: 0.373333rem;
    margin-left: 1.066667rem;
    color: #999;
}
.order-item .product-item {
    font-size: 0.373333rem;
    color: #666;
    margin-top: 0.32rem;
}
.order-item .p-conunt {
    float: right;
    margin-right: 0.4rem;
}
.order-item .p-total-count {
    float: right;
    margin-right: 0.4rem;
    font-size: 0.32rem;
}
.order-item .total-price {
    font-size: 0.373333rem;
    color: #151515;
    margin-left: 0.053333rem;
    letter-spacing: 0.026667rem;
}
.order-item .evaluation {
    padding-top: 0.266667rem;
    padding-bottom: 0.266667rem;
}
.order-item .evaluation-btn {
    float: right;
    width: 2.666667rem;
    height: 0.853333rem;
    color: #6b450a;
    background-color: #ffd161;
    font-size: 0.373333rem;
    line-height: 0.853333rem;
    text-align: center;
    margin-right: 0.266667rem;
}

.loading {
    padding-top: 0.266667rem;
    padding-bottom: 0.266667rem;
    font-size: 0.426667rem;
    text-align: center;
    color: #ccc;
}
.wrap {
    padding-bottom: 2.666667rem;
}

Orders page list contentList.js

(function(){

    // 订单卡片模版
    var itemTmpl = '<div class="order-item">'+
                        '<div class="order-item-inner">'+
                            '<img class="item-img" src=$poi_pic />'+
                            '<div class="item-right">'+
                                '<div class="item-top">'+
                                    '<p class="order-name one-line">$poi_name</p>'+
                                    '<div class="arrow"></div>'+
                                    '<div class="order-state">$status_description</div>'+
                                '</div>'+
                                '<div class="item-bottom">$getProduct</div>'+
                            '</div>'+
                        '</div>'+
                        '$getComment'+
                    '</div>';

    /**
    * 渲染评价按钮
    * @param {}
    */
    function getComment(data){
        var evaluation = !data.is_comment;

        if (evaluation) {
            return '<div class="evaluation clearfix">'+
                      '<div class="evaluation-btn">评价</div>'+
                    '</div>'
        }

        return ''* /
    * @param {}
    * Total dishes rendering*/ *;
    }
    
    
    function getTotalPrice(data){
        var str = '<div class="product-item">'+
                      '<span>...</span>'+
                      '<div class="p-total-count">'+
                      '总计'+data.product_count+'个菜,实付'+
                      '<span class="total-price">¥'+data.total+'</span>'+
                      '</div>'+
                  '</div>';
        return str;


    'More'
        list.push ({type:[];List data.product_list || =varThe getProduct (Data) {
        function* /
    * @param {}
    * Render specific commodity*/ *
    }
    
     
});

        var str = '';
        list.forEach(function(item){

            if (item.type === 'more') {
                str += getTotalPrice(data)
            } else {
                str += '<div class="product-item">'
                            +item.product_name+
                            '<div class="p-conunt">x'+
                                +item.product_count+
                            '</div>'+
                        '</div>';
            }
        })

        return str;

     }

    /**
    * 渲染列表
    * @param []
    */
    function initContentList(list){

        list.forEach(function(item){
            var str = itemTmpl.replace('$poi_pic',item.poi_pic)
                       .replace('$poi_name',item.poi_name)
                       .replace('$status_description',item.status_description)

                       .replace('$getProduct',getProduct(item))

                       .replace('$getComment',getComment(item));



            $('.order-list').append(str);
        });


    }

    var page = 0;
    var isLoading = false;
    /**
    * 请求数据
    * @param 
    */
    function getList(){
        page++;
        isLoading = true;

        $.get('../json/orders.json', function(data){
            setTimeout(function(){
                console.log(data);
                var list = data.data.digestlist || [];

                initContentList(list);
                isLoading = false;
            },1000);
            
        });
    }

    function addEvent(){
        window.addEventListener('scroll', function(){
            var clientHeight = document.documentElement.clientHeight;
            var scrollHeight = document.body.scrollHeight;
            var scrollTop = document.documentElement.scrollTop || document.body.scrollTop;
            
            var preDis = 30;
            if (scrollTop + clientHeight >= (scrollHeight -preDis)) {
                
                if (page < 3) {

                    if (isLoading) {
                        return;
                    }

                    getList();
                } else {
                    $('.loading').text('加载完成');
                }
                
            }
        });
    }

    function init(){
        getList();
        addEvent();
    }

    init();

})();

bottomBar.js same as before

Now is the order page renderings

Guess you like

Origin www.cnblogs.com/chenyingying0/p/12170902.html