ufutx-pc-website/src/views/Ecosystem/Ecosystem.vue

46 lines
1.5 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div class="ecosystem-page">
<Banner />
<CoreAdvantages />
<RegionCooperation />
<HealthManagement />
<MedicalCooperation />
<EnterpriseCooperation />
<CooperationConsult :device="cooperateData" />
<TalentTraining />
<CooperationConsult :device="cooperateDataV2" />
<CityPartner />
</div>
</template>
<script setup lang="ts">
import Banner from './sections/Banner.vue'
import CoreAdvantages from './sections/CoreAdvantages.vue'
import RegionCooperation from './sections/RegionCooperation.vue'
import HealthManagement from './sections/HealthManagement.vue'
import MedicalCooperation from './sections/MedicalCooperation.vue'
import EnterpriseCooperation from './sections/EnterpriseCooperation.vue'
import CooperationConsult from './sections/CooperationConsult.vue'
import TalentTraining from './sections/TalentTraining.vue'
import CityPartner from './sections/CityPartner.vue'
const cooperateData = {
title: '合作咨询',
desc: '欢迎健康产业链上下游企业以及希望利用AI技术 升级健康产品与服务的企业与我们洽谈合作,共创产业新价值',
img: 'https://images.health.ufutx.com/202506/18/2e9c9d64bdcf03fbe5041720f03033ca.png'
}
const cooperateDataV2 = {
title: '合作咨询',
desc: '提供专属健康服务和解决方案',
img: 'https://images.health.ufutx.com/202506/18/2e9c9d64bdcf03fbe5041720f03033ca.png'
}
</script>
<style scoped lang="less">
.ecosystem-page {
width: 100%;
overflow-x: hidden;
}
</style>