Files
panel/resources/js/views/apps/ecommerce/customer/view/CustomerTabOverview.vue

128 lines
2.8 KiB
Vue
Raw Permalink Normal View History

2025-08-04 16:33:07 +03:30
<script setup>
import CustomerOrderTable from './CustomerOrderTable.vue'
</script>
<template>
<VRow>
<VCol
cols="12"
md="6"
>
<VCard>
<VCardText class="d-flex gap-y-2 flex-column">
<VAvatar
variant="tonal"
color="primary"
icon="tabler-currency-dollar"
rounded
/>
<h5 class="text-h5">
Account Balance
</h5>
<div>
<h5 class="text-h5 text-primary mb-1">
$7480
<span class="text-body-1 d-inline-block">Credit Left</span>
</h5>
<p class="mb-0">
Account balance for next purchase
</p>
</div>
</VCardText>
</VCard>
</VCol>
<VCol
cols="12"
md="6"
>
<VCard>
<VCardText class="d-flex gap-y-2 flex-column">
<VAvatar
variant="tonal"
color="success"
icon="tabler-gift"
rounded
/>
<h5 class="text-h5">
Loyalty Program
</h5>
<div>
<VChip
color="success"
class="mb-2"
label
size="small"
>
Platinum member
</VChip>
<p class="mb-0">
3000 points to next tier
</p>
</div>
</VCardText>
</VCard>
</VCol>
<VCol
cols="12"
md="6"
>
<VCard>
<VCardText class="d-flex gap-y-2 flex-column">
<VAvatar
variant="tonal"
color="warning"
icon="tabler-star"
rounded
/>
<h5 class="text-h5">
Wishlist
</h5>
<div>
<h5 class="text-h5 text-warning mb-1">
15
<span class="text-body-1 d-inline-block">Items in wishlist</span>
</h5>
<p class="mb-0">
Receive notification when items go on sale
</p>
</div>
</VCardText>
</VCard>
</VCol>
<VCol
cols="12"
md="6"
>
<VCard>
<VCardText class="d-flex gap-y-2 flex-column">
<VAvatar
variant="tonal"
color="info"
icon="tabler-discount"
rounded
/>
<h5 class="text-h5">
Coupons
</h5>
<div>
<h5 class="text-h5 text-info mb-1">
21
<span class="text-body-1 d-inline-block">Coupons you win</span>
</h5>
<p class="mb-0">
Use coupon on next purchase
</p>
</div>
</VCardText>
</VCard>
</VCol>
<VCol>
<CustomerOrderTable />
</VCol>
</VRow>
</template>