Files
music-admin/pages/dashboard.vue
poptong 83b162d2bd
Some checks failed
🚀 Deploy - Demo / deployment (push) Has been cancelled
🔧 웹훅 URL을 HTTPS로 수정
- 웹훅 URL을 https://admin.youtooplay.com/webhook로 변경
- Nginx 리버스 프록시 설정 파일 추가
- 배포 가이드 업데이트
2025-10-01 01:47:51 +09:00

158 lines
3.1 KiB
Vue

<script setup lang="ts">
import AnalyticsCongratulations from '@/views/dashboard/AnalyticsCongratulations.vue'
import AnalyticsFinanceTabs from '@/views/dashboard/AnalyticsFinanceTab.vue'
import AnalyticsOrderStatistics from '@/views/dashboard/AnalyticsOrderStatistics.vue'
import AnalyticsProfitReport from '@/views/dashboard/AnalyticsProfitReport.vue'
import AnalyticsTotalRevenue from '@/views/dashboard/AnalyticsTotalRevenue.vue'
import AnalyticsTransactions from '@/views/dashboard/AnalyticsTransactions.vue'
// 👉 Images
import chart from '@images/cards/chart-success.png'
import card from '@images/cards/credit-card-primary.png'
import paypal from '@images/cards/paypal-error.png'
import wallet from '@images/cards/wallet-info.png'
definePageMeta({
middleware: 'auth'
})
</script>
<template>
<VRow>
<!-- 👉 Congratulations -->
<VCol
cols="12"
md="8"
>
<AnalyticsCongratulations />
</VCol>
<VCol
cols="12"
sm="4"
>
<VRow>
<!-- 👉 Profit -->
<VCol
cols="12"
md="6"
>
<CardStatisticsVertical
v-bind="{
title: 'Profit',
image: chart,
stats: '$12,628',
change: 72.80,
}"
/>
</VCol>
<!-- 👉 Sales -->
<VCol
cols="12"
md="6"
>
<CardStatisticsVertical
v-bind="{
title: 'Sales',
image: wallet,
stats: '$4,679',
change: 28.42,
}"
/>
</VCol>
</VRow>
</VCol>
<!-- 👉 Total Revenue -->
<VCol
cols="12"
md="8"
order="2"
order-md="1"
>
<AnalyticsTotalRevenue />
</VCol>
<VCol
cols="12"
sm="8"
md="4"
order="1"
order-md="2"
>
<VRow>
<!-- 👉 Payments -->
<VCol
cols="12"
sm="6"
>
<CardStatisticsVertical
v-bind=" {
title: 'Payments',
image: paypal,
stats: '$2,468',
change: -14.82,
}"
/>
</VCol>
<!-- 👉 Revenue -->
<VCol
cols="12"
sm="6"
>
<CardStatisticsVertical
v-bind="{
title: 'Transactions',
image: card,
stats: '$14,857',
change: 28.14,
}"
/>
</VCol>
</VRow>
<VRow>
<!-- 👉 Profit Report -->
<VCol
cols="12"
sm="12"
>
<AnalyticsProfitReport />
</VCol>
</VRow>
</VCol>
<!-- 👉 Order Statistics -->
<VCol
cols="12"
md="4"
sm="6"
order="3"
>
<AnalyticsOrderStatistics />
</VCol>
<!-- 👉 Tabs chart -->
<VCol
cols="12"
md="4"
sm="6"
order="3"
>
<AnalyticsFinanceTabs />
</VCol>
<!-- 👉 Transactions -->
<VCol
cols="12"
md="4"
sm="6"
order="3"
>
<AnalyticsTransactions />
</VCol>
</VRow>
</template>