时间:2021-05-26
效果图:
代码如下:
<!DOCTYPE html><html><head> <meta charset="utf-8"> <link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/3.0.2/css/bootstrap.min.css" rel="external nofollow" /></head><body> <div id="app" class="container"> <table class="table"> <thead> <tr> <th>产品编号</th> <th>产品名字</th> <th>购买数量</th> <th>产品单价</th> <th>产品总价</th> <th>操作</th> </tr> </thead> <tbody> <tr v-for="(item , index) in message"> <td @click="jia(index)">{{item.id}}</td> <td>{{item.name}}</td> <td> <button type="button" class="btn tn-primary" @click="subtract(index)">-</button> <input type="text" v-model="item.quantity"> <button type="button" class="btn tn-primary" @click="add(index)">+</button> </td> <td>{{item.price | filtermoney}}</td> <!--<td>{{arr[index].one}}</td>--> <td>{{item.price*item.quantity | filtermoney}}</td> <td> <button type="button" class="btn btn-danger" @click="remove(index)">移除</button> </td> </tr> <tr> <td>总购买价 </td> <td> {{animatenum | filtermoney}} </td> <td>总购买数量 </td> <td> </td> <td colspan="2"> <button type="button" class="btn btn-danger" @click="empty()">清空购物车</button> </td> </tr> </tbody> </table> <p v-if="message.length===0">您的购物车为空</p> </div> <script src="https://unpkg.com/tween.js@16.3.4"></script> <script src="https://cdn.bootcss.com/vue/2.2.3/vue.min.js"></script> <script> var vm=new Vue({ el:"#app", data:{ totalPrice:0, animatenum:0, message:[ { id: 007, name: 'iphone5s', quantity: 3, price: 4000 },{ id: 1340, name: 'iphone5', quantity: 9, price: 3000 },{ id: 7758, name: 'imac', quantity: 4, price: 7000 },{ id: 2017, name: 'ipad', quantity: 5, price: 6000 } ] }, watch:{ toComput2:function(newValue,oldValue){ this.tween(newValue,oldValue); } }, computed:{ //计算总金额 toComput2:function(){ var vm=this; //每次进来要重置总金额 vm.totalPrice=0; this.message.forEach(function(mess){ vm.totalPrice+=parseInt(mess.price*mess.quantity); }) return this.totalPrice; } }, filters:{ filtermoney:function(value){ return '¥'+value ; } }, mounted:function(){ this.tween('97000','0'); }, methods:{ //计算总数的方法为什么写在methods里面就不行? toComput:function(){ var vm=this; vm.message.forEach(function(mess){ vm.totalPrice+=parseInt(mess.price*mess.quantity); }) return vm.totalPrice; }, add:function(index){ var vm=this; vm.message[index].quantity++; }, subtract:function(index){ var vm=this; vm.message[index].quantity--; if(vm.message[index].quantity<=0){ if (confirm("你确定移除该商品?")) { vm.message.splice(index,1) } } }, remove:function(index){ var vm=this; if (confirm("你确定移除该商品?")) { vm.message.splice(index,1) } }, empty:function(){ var vm=this; vm.message.splice(0,vm.message.length); }, jia:function(index){ var vm=this; vm.arr[index].one++; }, tween:function(newValue,oldValue){ var vm=this; var twen=new TWEEN.Tween({animatenum:oldValue}); function animate() { requestAnimationFrame(animate); TWEEN.update(); }; twen.to({animatenum:newValue},750); twen.onUpdate(function(){ //toFixed();保留几位小数 vm.animatenum = this.animatenum.toFixed(); }) twen.start(); animate(); } } }); </script> </body></html>以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例为大家分享了vue实现购物车功能的具体代码,供大家参考,具体内容如下newVue({el:"#app",data:{cIndex:0,lists:[{t
前言以往的购物车,基本都是通过大量的DOM操作来实现。微信小程序其实跟vue.js的用法非常像,接下来就看看小程序可以怎样实现购物车功能。需求先来弄清楚购物车的
本文实例为大家分享了java实现购物车功能的具体代码,供大家参考,具体内容如下1需要实现1、实现淘淘商城的购物车功能2购物车功能2.1功能说明1、商品加入购物车
本文实例讲述了Vue.js实现的购物车功能。分享给大家供大家参考,具体如下:使用计算属性,内置指令,方法等基础知识开发购物车。需求分析:展示一个已经加入购物车的
本文实例讲述了vue实现的仿淘宝购物车功能。分享给大家供大家参考,具体如下:下面是一张众所周知的淘宝购物车页面,今天要讲解的案例就是用vue.js做一个类似的页