From dab9fd1fe635a8d1bc5081c2ef5be1ab26461baf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mar=C3=ADa?= Date: Tue, 9 Sep 2025 16:28:25 +0200 Subject: [PATCH] wip produtoras/id page --- assets/img/latienda-casa.svg | 18 +- assets/img/latienda-email.svg | 12 +- assets/img/latienda-telefono.svg | 17 +- assets/img/latienda-tienda.svg | 24 +-- assets/img/latienda-web.svg | 62 +----- components/CoopCard.vue | 3 +- components/HighlightsCard.vue | 2 +- components/ProductCard.vue | 2 +- components/ProductCardDetails.vue | 2 +- components/ProductModal.vue | 2 +- components/ProductsRelated.vue | 2 +- pages/productoras/[id].vue | 322 +++++++++++++++++------------- 12 files changed, 203 insertions(+), 265 deletions(-) diff --git a/assets/img/latienda-casa.svg b/assets/img/latienda-casa.svg index afea397..28f3746 100644 --- a/assets/img/latienda-casa.svg +++ b/assets/img/latienda-casa.svg @@ -1,16 +1,4 @@ - - - - - - - - + + + diff --git a/assets/img/latienda-email.svg b/assets/img/latienda-email.svg index 85db6b3..e1d3129 100644 --- a/assets/img/latienda-email.svg +++ b/assets/img/latienda-email.svg @@ -1,11 +1,3 @@ - - - - - - + + diff --git a/assets/img/latienda-telefono.svg b/assets/img/latienda-telefono.svg index 5ed0606..c0bf95f 100644 --- a/assets/img/latienda-telefono.svg +++ b/assets/img/latienda-telefono.svg @@ -1,16 +1,3 @@ - - - - - - - - - - + + diff --git a/assets/img/latienda-tienda.svg b/assets/img/latienda-tienda.svg index 320ef00..b702873 100644 --- a/assets/img/latienda-tienda.svg +++ b/assets/img/latienda-tienda.svg @@ -1,23 +1,3 @@ - - - - - - - + + diff --git a/assets/img/latienda-web.svg b/assets/img/latienda-web.svg index b786844..26b5f86 100644 --- a/assets/img/latienda-web.svg +++ b/assets/img/latienda-web.svg @@ -1,61 +1,3 @@ - - - - - - - - + + diff --git a/components/CoopCard.vue b/components/CoopCard.vue index d15fe86..5b9d445 100644 --- a/components/CoopCard.vue +++ b/components/CoopCard.vue @@ -152,7 +152,8 @@ export default { transition: all 0.2s ease; &:hover { - background: #f3f4f6; + background: $color-button; + color: white; } } } diff --git a/components/HighlightsCard.vue b/components/HighlightsCard.vue index 4110c70..6967743 100644 --- a/components/HighlightsCard.vue +++ b/components/HighlightsCard.vue @@ -128,7 +128,7 @@ export default { methods: { getProductImg(product) { if (product && product.image) return product.image - return `@/assets/img/latienda-product-default.svg` + return `@/assets/img/consumo-default.png` }, }, } diff --git a/components/ProductCard.vue b/components/ProductCard.vue index 837fa34..60bc8c1 100644 --- a/components/ProductCard.vue +++ b/components/ProductCard.vue @@ -11,7 +11,7 @@ diff --git a/components/ProductCardDetails.vue b/components/ProductCardDetails.vue index 15ac2e0..7c23543 100644 --- a/components/ProductCardDetails.vue +++ b/components/ProductCardDetails.vue @@ -161,7 +161,7 @@ export default { getProductImg(product) { if (product && product.image) return product.image - return `@/assets/img/latienda-product-default.svg` + return `@/assets/img/consumo-default.png` }, tagRoute(tag) { return `/busqueda?tags=${tag}` diff --git a/components/ProductModal.vue b/components/ProductModal.vue index 7666445..5590b90 100644 --- a/components/ProductModal.vue +++ b/components/ProductModal.vue @@ -174,7 +174,7 @@ export default { }, getImgUrl(image) { if (image) return image - return `@/assets/img/latienda-product-default.svg` + return `@/assets/img/consumo-default.png` }, redirectToLogin() { this.$router.push({ diff --git a/components/ProductsRelated.vue b/components/ProductsRelated.vue index bf4e84c..506b276 100644 --- a/components/ProductsRelated.vue +++ b/components/ProductsRelated.vue @@ -15,7 +15,7 @@

{{ product.name }}

diff --git a/pages/productoras/[id].vue b/pages/productoras/[id].vue index cbfec08..8f5149f 100644 --- a/pages/productoras/[id].vue +++ b/pages/productoras/[id].vue @@ -1,13 +1,33 @@