已采纳回答 / Brand_Zza
在loadMore里面加一个判断啊,不要直接把productList.length赋值进去,if(limitNum == productList.length) limitNum = 3;else limitNum = productList.length
2017-04-23
设置默认地址时候,可以传item过来,直接把所有地址isDefault设置为false,让把当前地址isDefault设置为true
2017-04-21
最新回答 / 慕函数3319187
课程demohttps://github.com/LinStan/VueStudy/tree/master/购物车课程demo完成后的源码https://github.com/LinStan/VueStudy/tree/master/vue2.0-shoppingCart
2017-04-20
在selectProduct函数里面添加下面代码解决一个一个点击全选的问题
var isAll = this.productList.every((value, index) => {
return value.checked === true;
});
this.checkAll = isAll ? true : false;
var isAll = this.productList.every((value, index) => {
return value.checked === true;
});
this.checkAll = isAll ? true : false;
2017-04-20