|
|
|
@ -1,13 +1,11 @@
@@ -1,13 +1,11 @@
|
|
|
|
|
<template> |
|
|
|
|
<div class="p-4"> |
|
|
|
|
<GrowCard :loading="loading" class="enter-y" /> |
|
|
|
|
<SiteAnalysis class="!my-4 enter-y" :loading="loading" /> |
|
|
|
|
|
|
|
|
|
<GrowCard :loading="loading" class="enter-y"/> |
|
|
|
|
<SiteAnalysis class="!my-4 enter-y" :loading="loading"/> |
|
|
|
|
<div class="md:flex enter-y"> |
|
|
|
|
<VisitRadar class="md:w-1/3 w-full" :loading="loading" /> |
|
|
|
|
|
|
|
|
|
<VisitSource class="md:w-1/3 !md:mx-4 !md:my-0 !my-4 w-full" :loading="loading" /> |
|
|
|
|
<SalesProductPie class="md:w-1/3 w-full" :loading="loading" /> |
|
|
|
|
<VisitRadar class="md:w-1/3 w-full" :loading="loading"/> |
|
|
|
|
<VisitSource class="md:w-1/3 !md:mx-4 !md:my-0 !my-4 w-full" :loading="loading"/> |
|
|
|
|
<SalesProductPie class="md:w-1/3 w-full" :loading="loading"/> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
@ -29,7 +27,6 @@
@@ -29,7 +27,6 @@
|
|
|
|
|
}, |
|
|
|
|
setup() { |
|
|
|
|
const loading = ref(true); |
|
|
|
|
|
|
|
|
|
setTimeout(() => { |
|
|
|
|
loading.value = false; |
|
|
|
|
}, 1500); |
|
|
|
|