ecommerce.vue
3.23 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<script setup>
import ECommerceCongratulations from '@/views/dashboards/ecommerce/ECommerceCongratulations.vue'
import ECommerceInvoiceTable from '@/views/dashboards/ecommerce/ECommerceInvoiceTable.vue'
import ECommerceMeetingSchedule from '@/views/dashboards/ecommerce/ECommerceMeetingSchedule.vue'
import ECommerceNewVisitors from '@/views/dashboards/ecommerce/ECommerceNewVisitors.vue'
import ECommerceTotalProfit from '@/views/dashboards/ecommerce/ECommerceTotalProfit.vue'
import ECommerceTotalRevenue from '@/views/dashboards/ecommerce/ECommerceTotalRevenue.vue'
import ECommerceTotalSalesChart from '@/views/dashboards/ecommerce/ECommerceTotalSalesChart.vue'
import ECommerceTotalSalesRadial from '@/views/dashboards/ecommerce/ECommerceTotalSalesRadial.vue'
import ECommerceTransactions from '@/views/dashboards/ecommerce/ECommerceTransactions.vue'
import ECommerceWebsiteTransactions from '@/views/dashboards/ecommerce/ECommerceWebsiteTransactions.vue'
const statisticsVertical = [
{
title: 'Revenue',
color: 'success',
icon: 'ri-money-dollar-circle-line',
stats: '95.2k',
change: 12,
subtitle: 'Revenue Increase',
},
{
title: 'Transactions',
color: 'info',
icon: 'ri-bank-card-line',
stats: '$1.2k',
change: 38,
subtitle: 'Daily Transactions',
},
]
const statisticsVerticalTwo = [
{
title: 'Logistics',
color: 'error',
icon: 'ri-car-line',
stats: '44.10k',
change: 12,
subtitle: 'Revenue Increase',
},
{
title: 'Reports',
color: 'warning',
icon: 'ri-file-chart-line',
stats: '268',
change: -28,
subtitle: 'System Bugs',
},
]
</script>
<template>
<VRow class="match-height">
<VCol
cols="12"
md="8"
class="d-flex flex-column align-self-end"
>
<ECommerceCongratulations />
</VCol>
<VCol
v-for="statistic in statisticsVertical"
:key="statistic.title"
cols="12"
sm="6"
md="2"
>
<CardStatisticsVertical v-bind="statistic" />
</VCol>
<VCol
cols="12"
md="8"
>
<ECommerceTotalProfit />
</VCol>
<VCol
cols="12"
md="4"
>
<VRow class="match-height">
<VCol cols="12">
<ECommerceTotalSalesChart />
</VCol>
<VCol cols="6">
<ECommerceTotalRevenue />
</VCol>
<VCol cols="6">
<ECommerceTotalSalesRadial />
</VCol>
</VRow>
</VCol>
<VCol
cols="12"
md="4"
>
<ECommerceTransactions />
</VCol>
<VCol
cols="12"
md="4"
>
<VRow>
<VCol
v-for="statistics in statisticsVerticalTwo"
:key="statistics.title"
cols="6"
>
<CardStatisticsVertical v-bind="statistics" />
</VCol>
<VCol cols="12">
<ECommerceNewVisitors />
</VCol>
</VRow>
</VCol>
<VCol
cols="12"
md="4"
>
<ECommerceWebsiteTransactions />
</VCol>
<VCol
cols="12"
md="8"
>
<ECommerceInvoiceTable />
</VCol>
<VCol
cols="12"
md="4"
>
<ECommerceMeetingSchedule />
</VCol>
</VRow>
</template>
<style lang="scss">
@use "@core/scss/template/libs/apex-chart.scss";
</style>