feat: add product to cart from main page

This commit is contained in:
Vlad Stan 2023-07-13 11:01:14 +03:00
parent 7516e0bc99
commit e72f013d84
7 changed files with 14 additions and 53 deletions

View file

@ -105,52 +105,6 @@ async function customerStall(path) {
},
addToCart(item) {
this.$emit('add-to-cart', item)
// console.log('### addToCart', item)
// console.log('### this.cart.products', this.cart.products)
// let prod = this.cart.products
// if (prod.has(item.id)) {
// let qty = prod.get(item.id).quantity
// if (qty == item.quantity) {
// this.$q.notify({
// type: 'warning',
// message: `${item.name} only has ${item.quantity} units!`,
// icon: 'production_quantity_limits'
// })
// return
// }
// prod.set(item.id, {
// ...prod.get(item.id),
// quantity: qty + 1
// })
// } else {
// prod.set(item.id, {
// name: item.name,
// quantity: 1,
// price: item.price,
// image: item?.images[0] || null
// })
// }
// this.$q.notify({
// type: 'positive',
// message: `'${item.name}' added to cart`,
// icon: 'thumb_up'
// })
// this.cart.products = prod
// this.updateCart()
// },
// removeFromCart(item, del = false) {
// let prod = this.cart.products
// let qty = prod.get(item.id).quantity
// if (qty == 1 || del) {
// prod.delete(item.id)
// } else {
// prod.set(item.id, {
// ...prod.get(item.id),
// quantity: qty - 1
// })
// }
// this.cart.products = prod
// this.updateCart()
},
updateCart() {
this.cart.total = 0