排序sort、filter

HTML:

<!DOCTYPE html>
<html>

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>vue shopping cart</title>
    <style type="text/css">
        body{
            background: #fff;display: flex;
        }
        .left{width: 375px;} .right{width: 375px;}
        li img{width: 20%;height: 100%;} .active{color: blue;}
        .tab-wrap,.filter-bar{display: flex;} 
        li{list-style: none; display: flex;}
        p em{color: red} p{position: relative;}
        .add{position: absolute;right: 15px; width: 32px;height: 22px;line-height:22px;border-radius:11px;background-color: #7a45e5;text-align: center;color: #fff;}
        .setWidth{width: 100%;}
        #tabCate{display: flex;} #right img{width: 20%;}
    </style>
</head>

<body>
    <div id="tabCate">
        <div class="left">
            <h3>商品列表</h3>
            <div >
                <ul class="tab-wrap">
                    <li v-for="(item,index) in items" v-bind:class="{active:index == cateindexs}" v-on:click="getIndex(index)">
                        {{item.message}}--{{index}}
                    </li>
                </ul>
                <ul class="filter-bar">
                    <li class="sort" v-for="(filter,index) in filters" v-bind:class="{active:index == sortIndex}" v-on:click="defaultSort(index)">
                       {{filter.message}}
                    </li>    
                </ul>
                <div>
                    <li v-for="(item,index) in extraLists" >
                        <img v-bind:src="item.img">
                        <div class="setWidth" v-if="true">{{item.name}}</div>
                        <div class="setWidth">
                            <p>¥<em>{{item.price}}</em></p> <br/>
                            <p><em>{{item.sales}}</em>人付款<span class="add" v-on:click="addItem(index)">+</span></p>
                        </div>
                    </li>
                </div>
            </div>
        </div>
        <div id="right">
            <h3>购物列表<span>编辑</span></h3>
            <div v-for="(item,index) in purchase">
                <img v-bind:src="item.img">
                    <div class="setWidth" v-if="true">{{item.name}}</div>
                    <div class="setWidth">
                        <p>¥<em>{{item.price}}</em></p> <br/>
                        <p>库存件</p>
                        <p><span v-on:click="increaseGoods(index)">+</span><span >{{count}}</span><span v-on:click="decreGoods(index)">-</span></p>
                    </div>
                </div>
        </div>
    </div>
    
    <script src="vue.js"></script>
    <script src="myapp.js"></script>
</body>


</html>

js

<!-- function objectSort(property, desc) {
    //降序排列
    if (desc) {
        return function (a, b) {
            return (a[property] >  b[property]) ? -1 : (a[property] <  b[property]) ? 1 : 0;
        }   
    }
    return function (a, b) {
        return (a[property] <  b[property]) ? -1 : (a[property] >  b[property]) ? 1 : 0;
    }
}

var myArray = [
  { "name": "John Doe", "age": 29 }, 
  { "name": "Anna Smith", "age": 24 }, 
  { "name": "Peter Jones", "age": 39 }
]

console.log(myArray.sort(objectSort('name',true)));  -->

JS:
var tab = new Vue({
    el:'#tabCate',
    data:{
        items:[
            {message:'推荐'},
            {message:'母婴'},
            {message:'鞋包饰品'},
            {message:'食品'},
            {message:'数码家'},
        ],
        filters:[
            {message:'综合排序'},
            {message:'销量优先'},
            {message:'价格'},
        ],
        purchase:[

        ],
        lists:[
            {
                name:'Beats EP头戴式耳机',
                type:0,
                sales:0,
                price:0,
                number:1,
                img: 'http://img11.360buyimg.com/n1/s528x528_jfs/t3109/194/2435573156/46587/e0e867ac/57e10978N87220944.jpg!q70.jpg'
            },
            {
                name:'雀巢',
                type:1,
                sales:22,
                price:222,
                number:1,
                img: 'http://m.360buyimg.com/babel/jfs/t5197/28/400249159/97561/304ce550/58ff0dbeN88884779.jpg!q50.jpg.webp'
            },
            {
                name:'煎炒烹饪',
                type:2,
                sales:33,
                price:333,
                number:1,
                img: 'http://gw.alicdn.com/tps/TB19OfQRXXXXXbmXXXXL6TaGpXX_760x760q90s150.jpg_.webp'
            },
            {
                name:'ANNE KLEIN 潮流经典美式轻奢',
                type:2,
                sales:11,
                price:111,
                number:1,
                img: 'http://gw.alicdn.com/tps/TB1l5psQVXXXXcXaXXXL6TaGpXX_760x760q90s150.jpg_.webp'
            },
            {
                name:'乐高EV3机器人积木玩具',
                type:2,
                sales:11,
                price:111,
                number:1,
                img: 'https://m.360buyimg.com/mobilecms/s357x357_jfs/t6490/168/1052550216/653858/9eef28d1/594922a8Nc3afa743.jpg!q50.jpg'
            },
        ],
        count:1,
        cateindexs:0,   //cateindexs要放在data里
        sortIndex:0,
        priceUp:0,     
        extraLists:[]
    },
    created: function () {   //created这个钩子在vue实例被创建后就会被调用,
        this.setList();   //   因为created这个钩子在vue实例被创建后就会被调用,所以setList()马上就执行
        /*console.log(this.data)  //undefined  
        console.log(this.$data)  // {__ob__: eo} 返回的是整个data 
        console.log(this.lists)  //返回的是整个lists
        console.log(this.lists instanceof Array)  //true
        console.log(this.extraLists)  //页面刚加载是,返回的是整个lists
        console.log(this.extraLists[1].type)   //1*/
    },
    methods:{
        getIndex:function(index){
            this.cateindexs=index;
            this.setList();
        },
        setList:function(){
            var self = this;
            this.extraLists = this.lists.filter(function(item){
                return self.cateindexs !== 0 ? item.type === self.cateindexs : item
            });
        },
        defaultSort:function(index){
            console.log(typeof this.lists)
            //var self = this;
            this.sortIndex = index;
            if (index==0) {       //点击综合排序
                this.setList();   //初始化时渲染页面,  为什么要初始化页面,因为sort()方法改变了lists原始数组
            }else if(index == 1){  //点击销量优先进行排序
                this.extraLists.sort(this.sortNumber('price',true));  //注意:sortNumber前面要加this
            }else if(index == 2){   //
                this.extraLists.sort(this.priceSort('sales'));  //注意:sortNumber前面要加this
            }
        },
        sortNumber:function(property,desc){
            //降序排列
            if (desc) {       //默认销量从高到低排序
                return function (a, b) {
                    return (a[property] >  b[property]) ? -1 : (a[property] <  b[property]) ? 1 : 0;
                }   
            }
            //升序排列
            return function (a, b) {     //销量从低到高排序
                return (a[property] <  b[property]) ? -1 : (a[property] >  b[property]) ? 1 : 0;
            }
        },
        /*
            价格排序
        */
        priceSort:function(property){
            //降序排列
            if (this.priceUp == 0) {   //默认价格从高到低排序
                this.priceUp ++;
                return function (a, b) {
                    return (a[property] >  b[property]) ? -1 : (a[property] <  b[property]) ? 1 : 0;
                }   
            }else if(this.priceUp == 1){     //从低到高排序
                //升序排列
                this.priceUp --;
                return function (a, b) {
                    return (a[property] <  b[property]) ? -1 : (a[property] >  b[property]) ? 1 : 0;
                }    
            }
        },
        /*
            加入购物车
        */
        addItem:function(index){
            this.purchase.push(this.lists[index])
            //console.log(this.count);  //1
            //console.log(this.purchase instanceof Array)  //true
        },
        increaseGoods:function(){
            this.count++;
        },
        decreGoods:function(){
            this.count--;
        }
    }
})

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,039评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,223评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,916评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,009评论 1 291
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,030评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,011评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,934评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,754评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,202评论 1 309
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,433评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,590评论 1 346
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,321评论 5 342
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,917评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,568评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,738评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,583评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,482评论 2 352

推荐阅读更多精彩内容