forked from dengzhifeng/ufutx-pc-website
38 lines
1.2 KiB
Vue
38 lines
1.2 KiB
Vue
<template>
|
|
<div class="home-page">
|
|
<!-- Banner 模块-->
|
|
<Banner />
|
|
<!-- 七维度模块-->
|
|
<SevenDimensions />
|
|
<!-- 应用场景模块-->
|
|
<UseCases />
|
|
<!-- 一站式解决方案-->
|
|
<OneStopSolution />
|
|
<!-- AI健康流程-->
|
|
<AiHealthProcess />
|
|
<!-- 客户案例-->
|
|
<CustomerCases />
|
|
<!-- APP 推广与合作咨询-->
|
|
<AppPromotion />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import Banner from './sections/Banner.vue'
|
|
import SevenDimensions from './sections/SevenDimensions.vue'
|
|
import UseCases from './sections/UseCases.vue'
|
|
import OneStopSolution from '@/views/Network/sections/OneStopSolution.vue'
|
|
import AiHealthProcess from '@/views/Network/sections/AiHealthProcess.vue'
|
|
import CustomerCases from '@/views/Network/sections/CustomerCases.vue'
|
|
import AppPromotion from '@/views/Network/sections/AppPromotion.vue'
|
|
// import GlobalService from './sections/GlobalService.vue'
|
|
// import CustomerFeedback from './sections/CustomerFeedback.vue'
|
|
// import Partners from './sections/Partners.vue'
|
|
</script>
|
|
|
|
<style scoped lang="less">
|
|
.home-page {
|
|
// 可设置全局背景或间距,按需扩展
|
|
}
|
|
</style>
|