已采纳回答 / Deneb
http://www.imooc.com/video/14040----------@丶筱筱 源码地址:https://github.com/Yfling/shoppingCart/tree/master/unitunit文件里面就是最初demo的html+css+图片资源的源码(没有添加vue),可以下载下来自己去做这个vue案例。
2017-07-03
最新回答 / 吴彦祖的帅气
selectAll: function(isCheck) {this.checkAll = isCheck; //直接给全选参数赋值this.students.forEach(function(item) {if (typeof item.checked == "undefined") {Vue.set(item, "checked", isCheck); //这里传入的应该是isCheck,而不是true} else {item.checked = isCheck;}});},
2017-07-01
可以在selectedProduct方法里面,最后再调用一个方法isCheckAll(),实时检查是否为全选
isCheckAll: function (){
var _this = this;
this.checkAllFrag = true;
this.productList.forEach(function (item,index) {
if(item.checked !== true){
_this.checkAllFrag = false;
}
});
}
isCheckAll: function (){
var _this = this;
this.checkAllFrag = true;
this.productList.forEach(function (item,index) {
if(item.checked !== true){
_this.checkAllFrag = false;
}
});
}
2017-06-30