计算属性

上面讲到了使用计算属性来实现数据的计算功能,下面让我们来看一下
在不同的Vue实例下使用计算属性:Vue实例.计算属性名

案例1:根据不同的用电类型计算电费:
让我们先看一下效果图是这样的
在这里插入图片描述
这里我是用了bootstrap布局,看上去比较好看~

效果是这样的,用户输入上个月的使用电表数,再输入本月的用电表数,得出的插值再分别用商业用电和民用用电的价格相乘,然后得出本月应缴纳的电费。

下面我们可以先在页面上把布局写出来

	<div class="col-md-8 col-md-offset-2">
        <div class="row">
            <div class="col-md-12">
                <div class="page-header">
                    <h2>电费计算器</h2>
                </div>
            </div>
        </div>
        <div class="row" id="app1">
            <div class="col-md-4">
                <input type="text" class="form-control" placeholder="上月电表数" v-model="lastMonth">
            </div>
            <div class="col-md-4">
                <input type="text" class="form-control" placeholder="本月电表数" v-model="thisMonth">
            </div>
            <div class="col-md-4">
                <label class="form-control-static">
                    两月电表差值:{{subNumber}}
                </label>
            </div>
        </div>
    </div>
    <div class="container col-md-8 col-md-offset-2" id="app2">
        <div class="row">
            <div class="col-md-12">
                <input type="radio" name="ele" value="bussines" v-model="useType">商业用电(1.1元/度)
                <input type="radio" name="ele" value="people" v-model="useType">民用用电(0.55元/度)
            </div>
        </div>
        <div class="row">
            <div class="col-md-12">
                应缴纳电费:<span class="price">¥{{price}}</span>
            </div>
        </div>
    </div>

然后我们写完布局以后再从Vue中实现我们想要的数据计算功能

		var app1=new Vue({
            el:'#app1',
            data:{
                lastMonth:0,
                thisMonth:0
            },
            computed:{
                subNumber:function(){
                    return this.thisMonth-this.lastMonth;
                }
            }
        })
        var app2=new Vue({
            el:'#app2',
            data:{
                useType:'people'
            },
            computed:{
                price:function(){
                    if(this.useType=='people'){
                        return parseInt(app1.subNumber*0.55*100)/100;
                    }else{
                        return parseInt(app1.subNumber*1.1*100)/100;
                    }
                }
            }
        })

这里我们是创建了两个Vue根实例,实现最后计算。

第一个根实例中我们分别给两个input赋初值,然后计算出用户输入的两个月的电表差值。

第二个根实例中我们赋初值给people这个量,然后下面进行判断,最终用户选择的是哪种用电,然后根据第一个根实例计算出的插值再进行相乘计算,最后得出的计算结果就是用户本月的用电费,然后取小数点后两位小数,最后再把price的值文本插值到最后的结果处。最后为了用户更明显的看到本月用电费我们给最后的结果简单设置一个样式:

		.price{
            color: orangered;
        }

最后效果图:
在这里插入图片描述
案例2:购物车

效果图是这样的:
在这里插入图片描述
这里依旧是bootstrap布局~

效果是这样的,用户可以方便管理自己的购物车,点击加减按钮相应的数量和价格都会发生相应的变化,点击删除,对应的商品就会在购物车中移除。

下面我们还是先把页面布局出来:

		<div class="container" id="app">
        <div class="row">
            <div class="col-md-12">
                <div class="page-header">
                    <h2>XX品牌购物车</h2>
                </div>
            </div>
        </div>

        <div class="row" v-show="product.length!=0">
            <div class="col-md-8 col-md-offset-2">
                <table class="table table-hover">
                    <thead>
                        <th>序号</th>
                        <th>品牌</th>
                        <th>品名</th>
                        <th>单价</th>
                        <th>购买数量</th>
                        <th>商品价格</th>
                        <th>操作</th>
                    </thead>
                    <tbody>
                        <tr v-for="(item,index) in product">
                            <td>{{index+1}}</td>
                            <td>{{item.brand}}</td>
                            <td>{{item.name}}</td>
                            <td>{{item.price}}</td>
                            <td>
                                <button class="btn btn-xs btn-default" @click="item.count--" :disabled="item.count==1">-</button>
                                <input type="text" min="1" step="1" v-model="item.count">
                                <button class="btn btn-xs btn-default" @click="item.count++">+</button>
                            </td>
                            <td>{{item.price*item.count}}</td>
                            <td>
                                <button class="btn btn-danger btn-xs" @click="deleteProduct(index)">删除</button>
                            </td>
                        </tr>
                    </tbody>
                </table>
                <div>您的购物总价为:¥{{totalPrice}}</div>
            </div>
        </div>

        <div class="row" v-show="product.length==0">
            <div class="col-md-8 col-md-offset-2">
                    您的购物车空空如也,返回<a href="javascript:void(0);">首页</a>逛逛叭~
            </div>
        </div>

    </div>

然后我们再把表格的数据实现居中处理,比较好看:

			table th,table td{
                text-align: center;
            }
            input[type=text]{
                width:50px;
                text-align: center;
            }

然后我们来在Vue中实现数据计算功能:

		var app=new Vue({
            el:'#app',
            data:{
                product:[
                    {
                        id:1,
                        brand:'某星',
                        name:'Galaxy Ss8',
                        price:4500,
                        count:1
                    },{
                        id:2,
                        brand:'Apple',
                        name:'iPhone X',
                        price:6700,
                        count:1
                    },{
                        id:3,
                        brand:'某富士',
                        name:'苹果',
                        price:3,
                        count:10
                    },{
                        id:4,
                        brand:'罗技',
                        name:'鼠标',
                        price:1200,
                        count:1
                    },{
                        id:5,
                        brand:'某麦郎',
                        name:'矿泉水',
                        price:1,
                        count:3
                    }
                ]
            },
            methods:{
                deleteProduct:function(index){
                    this.product.splice(index,1)
                }
            },
            computed:{
                totalPrice:function(){
                    var sum=0;
                    for(var i=0;i<this.product.length;i++){
                        sum+=this.product[i].price*this.product[i].count;
                    }
                    return sum;
                }
            }
        })

首先是我们的数据,真实项目开发的时候这些数据都来自数据库中,这里就写在data里方便看

然后我们利用V-for指令把这些数据都遍历到表格里,下面我们再计算当每个加减框发生变化时把文本框里的值和数量相乘最后得出的结果先赋给当前商品的价格,把所有商品的价格再赋给总值。

最后实现删除功能,用到了方法,给删除按钮绑定事件,当点击删除按钮时触发操作,执行methods中的代码。

当最后用户购物车中的商品清空后提示用户购物车已清空。

这是结合计算属性的两个案例,小伙伴们可以参考~

希望可以帮到你哦~

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值