vue.js实现购物车的简单计件

//html部分
<div id="app">
                <div class="goods">
                    <div>小兔子</div>
                    <p>单价:{{price}}</p>
                    <button @click="handleReducer">-</button>
                    <input type="text" v-model.number="num">
                    <button @click="handleAdd">+</button>
                    <p>小计:{{sum}}</p>
                    <p>运费:{{freight}}</p>
                    <p>应付:{{pay}}</p>
                </div>
            </div>
	//js脚本部分
	<script src="vue.js"></script>
<script>
   /*简单购物车:
   数量 :num   价格:price  小计:sum  运费:freght  10  超过299 包邮
   应付: pay
   */ 
    new Vue({
        el:"#app",//放唯一id对象的
        data:{//放数据
            price:39.8,
            num:1,
            freight:10
        },
        methods: {//专门放函数的
            handleReducer(){//减
                if(this.num <=1){//等于或小于1 让它等于1
                    this.num = 1;
                }else{//大于1 的时候
                    this.num--;
                }
            },
            handleAdd(){
                this.num++;
            }
        },
        computed:{//专门计算的
            sum(){
                return this.num*(this.price*10)/10;//解决小数点0.1+0.2 != 0.3 的问题  先乘上10位整数 运算结果在除以10
            },
            pay(){
                let countPrice = this.num*(this.price*10)/10;
                if(countPrice >= 299){
                    return countPrice;//包邮
                }else{
                    return countPrice+this.freight;//不包邮费
                }
            }
        }
    })


</script>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

追逐梦想之路_随笔

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值