index.vue
875 Bytes
<template>
<div class="p-4 md:flex">
<div class="md:w-7/10 w-full !mr-4 enter-y">
<GrowCard :loading="loading" class="enter-y" />
<SiteAnalysis class="!my-4 enter-y" :loading="loading" />
<div class="md:flex enter-y">
<Card title="核心流程指南" style="width: 100%">
<img alt="核心流程指南" src="../../../assets/images/flow.png" />
</Card>
</div>
</div>
<div class="md:w-3/10 w-full enter-y">
<HelpDoc />
</div>
</div>
</template>
<script lang="ts" setup>
import { ref } from 'vue';
import GrowCard from './components/GrowCard.vue';
import SiteAnalysis from './components/SiteAnalysis.vue';
import { Card } from 'ant-design-vue';
import HelpDoc from './components/HelpDoc.vue';
const loading = ref(true);
setTimeout(() => {
loading.value = false;
}, 1500);
</script>