selectedProducted:function (item) {
//判断注册是否存在商品
if(typeof item.checked == 'undefined'){
//全局注册变量,监听变量的值得变化
//Vue.set(item,"checked",true);
//局部注册变量
this.$set(item,"checked",true);
}else{
item.checked =! item.checked;
//定义变量,用于记录选定的商品的个数
var checkedNum = 0;
//遍历所有的商品
for (var i = 0; i < this.productionList.length; i++) {
//如果选中了商品
if (this.productionList[i].checked) {
//选中的商品数量加1
checkedNum++;
}
}
//如果选中的商品数量和商品总数一样,表示选中了所有商品
if (checkedNum == this.productionList.length) {
this.checkedAllFlag = true;
//没有选中所有的商品
} else {
this.checkedAllFlag = false;
}
}
},