CustomerTabOverview.vue
2.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<script setup>
import CustomerOrderTable from './CustomerOrderTable.vue'
</script>
<template>
<VRow class="match-height">
<VCol
cols="12"
md="6"
>
<VCard>
<VCardText class="d-flex gap-y-2 flex-column">
<VAvatar
variant="tonal"
color="primary"
icon="ri-money-dollar-circle-line"
rounded
/>
<h6 class="text-lg font-weight-medium">
Account Balance
</h6>
<div class="text-base">
<p class="mb-0">
<span class="text-primary font-weight-medium text-lg me-1">$7480</span>
Credit Left
</p>
<p class="mb-0 text-base">
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="ri-gift-line"
rounded
/>
<h6 class="text-lg font-weight-medium">
Loyalty Program
</h6>
<div>
<VChip
color="success"
size="small"
class="mb-2"
>
Platinum Member
</VChip>
<p class="mb-0 text-base">
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="ri-star-smile-line"
rounded
/>
<h6 class="text-lg font-weight-medium">
Wishlist
</h6>
<div>
<p class=" mb-0">
<span class="text-warning font-weight-medium text-lg me-1">15</span>
items in wishlist
</p>
<p class="mb-0 text-base">
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="ri-vip-crown-line"
rounded
/>
<h6 class="text-lg font-weight-medium">
Coupons
</h6>
<div>
<p class="mb-0">
<span class="text-info text-lg me-2">21</span>
Coupons you win
</p>
<p class="mb-0 text-base">
Use coupon on next purchase
</p>
</div>
</VCardText>
</VCard>
</VCol>
<VCol>
<CustomerOrderTable />
</VCol>
</VRow>
</template>