allTotal() {
let sum = 0;
if (this.shopCarList.length) {
this.shopCarList.forEach((item) => {
if (item.isChecked) {
sum += item.num * item.sku.price;
}
});
}
return sum * 100;
},
或者
getShopCarList(item) {
//把单个商品整合成数组
let shopCarList = this.$getStoarge("shopCarList") || [];
//获取购物车列表
if (shopCarList.length === 0) {
//空数组
shopCarList.push(item);
this.$setStorage("shopCarList", shopCarList);
} else {
let newArr = shopCarList.filter((items) => {
return items.id === item.id && items.sku.id === item.sku.id;
});
console.log(newArr);
if (newArr.length) {
newArr[0].num++;
shopCarList.concat(newArr);
} else {
shopCarList.push(item);
}
this.$setStorage("shopCarList", shopCarList);
}
},
},
在这种语句中,if()内的内容,没有常见的 = 或者 > ,请各位解释一下,这种情况他判断的是什么