自己用vue写的一个音乐播放器,源码地址:https://github.com/snow-imprint/music-player-vue2,
如果帮到了你,记得给颗星哦 O(∩_∩)O
如果帮到了你,记得给颗星哦 O(∩_∩)O
2017-06-05
计算总价用计算属性computed好些,能够动态获取商品数量的变化。而不是在method方法定义好函数后,在增加/减少/全选的时候,每次都去调用这个函数。computed: {countTotalPrice: function(){ var totalPrice = 0;this.productLists.forEach(function (ele, i){if (ele.checked) { totalPrice += ele.productPrice * ele.productQuantity } })return totalPrice;} }
2017-06-05