37 lines
1.2 KiB
Vue
37 lines
1.2 KiB
Vue
<template>
|
|
<PageWrapper>
|
|
<template #headerContent> <WorkbenchHeader /> </template>
|
|
<!-- <div class="lg:flex">
|
|
<div class="lg:w-7/10 w-full !mr-4 enter-y">
|
|
<ProjectCard :loading="loading" class="enter-y" />
|
|
<DynamicInfo :loading="loading" class="!my-4 enter-y" />
|
|
</div>
|
|
<div class="lg:w-3/10 w-full enter-y">
|
|
<QuickNav :loading="loading" class="enter-y" />
|
|
|
|
<Card class="!my-4 enter-y" :loading="loading">
|
|
<img class="xl:h-50 h-30 mx-auto" src="../../../assets/svg/illustration.svg" />
|
|
</Card>
|
|
|
|
<SaleRadar :loading="loading" class="enter-y" />
|
|
</div>
|
|
</div> -->
|
|
</PageWrapper>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
// import { Card } from 'ant-design-vue'
|
|
import { PageWrapper } from '/@/components/Page'
|
|
import WorkbenchHeader from './components/WorkbenchHeader.vue'
|
|
// import ProjectCard from './components/ProjectCard.vue'
|
|
// import QuickNav from './components/QuickNav.vue'
|
|
// import DynamicInfo from './components/DynamicInfo.vue'
|
|
// import SaleRadar from './components/SaleRadar.vue'
|
|
|
|
const loading = ref(true)
|
|
|
|
setTimeout(() => {
|
|
loading.value = false
|
|
}, 1500)
|
|
</script>
|