fixed cart item prices

This commit is contained in:
Mamalizz
2025-03-18 20:34:14 +03:30
parent 83885b2128
commit 655e8ff6e5
+16 -10
View File
@@ -140,11 +140,11 @@ watch(
{{ data.product.category }}
</span>
<div
v-if="data.product.discount > 0"
v-if="data.discount > 0"
class="text-white bg-blue-500 px-3 lg:px-4 py-1.5 lg:py-2 text-[10px] lg:text-xs rounded-full flex items-center gap-1"
>
<Icon name="bi:percent" class="size-4" />
{{ data.product.discount }}
{{ data.discount }}
تخفیف
</div>
</div>
@@ -227,15 +227,15 @@ watch(
<div class="flex items-end gap-2">
<div class="flex flex-col">
<span
v-if="data.product.discount > 0"
v-if="data.discount > 0"
class="typo-p-sm relative flex-center w-fit line-through"
>
{{ data.product.price }}
{{ data.price }}
</span>
<span
class="typo-p-xl relative flex-center w-fit font-medium"
>
{{ data.product.final_price }}
{{ data.final_price }}
</span>
</div>
</div>
@@ -279,11 +279,17 @@ watch(
</button>
</div>
<span
class="text-sm lg:text-[1.125rem] text-slate-900 font-semibold"
>
{{ data.product.price }}
</span>
<div class="flex flex-col">
<span
v-if="data.discount > 0"
class="typo-p-xs relative flex-center w-fit line-through"
>
{{ data.price }}
</span>
<span class="typo-p-md relative flex-center w-fit font-medium">
{{ data.final_price }}
</span>
</div>
</div>
</li>
</template>