computed: {
cartPrice() {
let tmp = 0
let tmpArr =[]
if (this.goodsList.length) {
tmpArr = this.goodsList.map(value => value.isChecked==true && value)
tmpArr.forEach(value => (tmp += value.count * value.PRESENT_PRICE))
}
return tmp;
}
}