码迷,mamicode.com
首页 > 其他好文 > 详细

vue点击按钮给商品按照价格进行倒叙

时间:2019-01-26 15:55:54      阅读:385      评论:0      收藏:0      [点我收藏+]

标签:val   charset   button   return   app   doc   rtb   eth   value   

<!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 src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head>
<body>
    <div id="app">
        <button @click="sortBtn()">点击倒叙</button>
        <ul>
            <li v-for="(list, index) in goodList" :key="index">{{list.name}} ------------ {{list.gdPrice}}</li>
        </ul>
    </div>
    <script>
        var app = new Vue({
            el: ‘#app‘,
            data() {
                return {
                    goodList: [
                        {
                            name: ‘测试商品1‘,
                            gdPrice: 600
                        },
                        {
                            name: ‘测试商品2‘,
                            gdPrice: 700
                        },
                        {
                            name: ‘测试商品3‘,
                            gdPrice: 800
                        }
                    ]
                }
            },
            methods: {
                sortBtn () {
                    console.log(‘sort‘)
                    this.goodList.sort(this.sortMethods(‘gdPrice‘))
                },
                sortMethods (property) {
                    return function(a,b){
                        var value1 = a[property]
                        var value2 = b[property]
                        return value2 - value1
                    }
                }
            },
        })
    </script>
</body>
</html>

 

vue点击按钮给商品按照价格进行倒叙

标签:val   charset   button   return   app   doc   rtb   eth   value   

原文地址:https://www.cnblogs.com/cengjingdeshuige/p/10323628.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!